当前位置: 首页 > 知识库问答 >
问题:

SpringBoot错误:没有名为“My Controller”的bean可用

呼延承平
2023-03-14

我正在SpringBoot中构建一个“Hello World”的基本程序

代码

MyController.java

package controllers;
import org.springframework.stereotype.Controller;

@Controller
public class MyController {
    public String hello() {
        System.out.println("Hello World");
        return "foo";
    }
}

DemoApplication.java

package di.prac;

import java.util.Arrays;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;

import controllers.MyController;

@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        ApplicationContext ctx=SpringApplication.run(DemoApplication.class, args);
        MyController m = (MyController)ctx.getBean("myController");
        m.hello();
        System.out.println("*******"+Arrays.asList(ctx.getBeanDefinitionNames()));

    }
}

共有1个答案

潘佐
2023-03-14

将控制器放置在di.prac子包下,如di.prac.controllers或在控制器上使用@componentscan。默认情况下,Spring扫描主应用程序所在的当前包和子包。如果您也想扫描其他包,那么您可以将@springbootapplication中的包指定为参数,如。

@SpringBootApplication(scanBasePackages = {"com.xyz.controllers", "com.abc.models""})

我们应该避免将@Configuration类放在默认包中(即完全不指定包)。在这种情况下,Spring扫描类路径中所有JAR中的所有类。这会导致错误,应用程序可能无法启动。

 类似资料:
  • 我正在尝试开发一个新的批与Spring批和jpa。当我尝试启动它时,我收到错误"嵌套异常是org.springframework.beans.factory.NoSuchBean定义异常:没有名为'entityManagerFactory'可用的bean" 我的pom.xml 我的数据源配置类: 我的存储库类: 我的实体类: pplication.properties: 如果我尝试启动应用程序,我

  • 请求处理失败;嵌套的异常是org。springframework。豆。工厂NoSuchBeanDefinitionException:没有名为“transactionManager”的bean可用:没有为限定符“transactionManager”找到匹配的transactionManager bean-既没有限定符匹配,也没有bean名称匹配! 客户请求。JAVA 客户控制器 顾客道 spri

  • 我创建了一个Spring Boot应用程序,并使用我想要执行的方法创建了一个类。将项目部署为war文件时,我从stacktrac中获取错误。我想从类TennisExecitor中运行该方法。 没有名为'entityManagerFactory'的bean可用 创建名为'(内部bean)#366583f9'的bean时出错:设置构造函数参数时无法解析对bean'entityManagerFactor

  • 当我试图使用spring代码创建关系时,我得到了事务管理器错误。我正在我的项目中使用Mysql和Neo4j数据库。我尝试了不同的解决方法,但都解决不了。 noSuchBeanDefinitionException:没有名为“Transaction Manager”的bean可用:没有为限定符“Transaction Manager”找到匹配的PlatformTransactionManager b

  • 我在构建时遇到了这个错误。我在这里参考了其他的答案,但没有一个对我有效。 应用程序.属性 存储库: 实体: 和pom.xml 和主类(spring boot应用程序) 我从.m2目录中删除了所有文件夹。再次运行mvn clean install。得到了同样的错误。服务类自动连接存储库。控制器使用@RestController注释。 而这正是确切的原因: 原因:org.springframework

  • 我正在开发一个新的应用程序(对我来说),我在启动时收到了无bean“entityManagerFactory”可用错误。其他经历过这种情况的人表示,如果我正确定义了数据源,这种情况就不会发生。让我困惑的是,Spring Boot/JPA或Flyway(我也在使用)坚持将特定的属性名称用于您的一个数据源。我不知道如果你有一个以上的人会怎么处理。我需要更改我们的申请。属性文件,以便从环境变量中获取值,