我刚刚开始使用Spring(Boot)。
我在abc.de
中有我的“主要”课程,注明了@SpringApplication
。
到目前为止,一切正常。我只使用了刻板印象注释。
现在我想将@Bean
与@Configuration
类一起使用,只是为了了解它是如何工作的。
我的@Configuration
课程:
@Configuration
public class BeanConfiguration {
@Bean
public XslDataFileLoader dataSource() {
return new XslDataFileLoader();
}
}
班级XslDataFileLoader
位于同一个包中。
我在控制器类中使用@Autowired
声明了这个bean。
所以我的“主”类在abc.de
中,配置类在abc.de.config
中,而XslDataFileLoader也在abc.de.config
中。
当我启动应用程序时,spring无法注入bean。它找不到它。
我尝试了scanPackages = abc.de.config
:这样,我的其他豆子都找不到了。
如何在最新的春季启动中声明这一点?
修改
堆栈跟踪:
2017-05-19 13:52:03 ERROR o.s.b.d.LoggingFailureAnalysisReporter -
***************************
APPLICATION FAILED TO START
***************************
Description:
Field dataSource in abc.de.controllers.LoginController required a bean of type 'abc.de.config.XslDataFileLoader' that could not be found.
Action:
Consider defining a bean of type 'abc.de.config.XslDataFileLoader' in your configuration.
XslDataFileLoader:
package abc.de.config;
public class XslDataFileLoader {
public XslDataFileLoader() {
}
}
的LoginController:
package abc.de.controllers;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import abc.de.config.XslDataFileLoader;
@Controller
public class LoginController {
@Autowired
XslDataFileLoader loader;
@GetMapping("/login")
public String login() {
System.out.println(loader);
return "login";
}
@PostMapping("/login")
public String loginTry() {
return "redirect:dashboard";
}
}
2ND EDIT
MySpringBootApplication:
package abc.de;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@SpringBootApplication
@EnableJpaRepositories
public class MySpringBootApplication{
public static void main(final String[] args) {
SpringApplication.run(MySpringBootApplication.class, args);
}
}
application.properties:
server.port=5566
spring.application.name=@project.name@
# data source
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=root
spring.datasource.password=
# Session
spring.session.store-type=none
# Security
security.basic.enabled=false
# logging
logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n
logging.level.org.hibernate.SQL=debug
#logging.level.org.hibernate.type.descriptor.sql=trace
logging.level.=error
答案 0 :(得分:1)
首先,请发布所有代码和堆栈跟踪。
BeanConfiguration
类配置正确,因此您的注射可能出现问题。
你有XslDataFileLoader
班的注释吗?这可能是双豆声明的问题,而不是找不到bean(如果@Component
上有XslDataFileLoader
并同时在BeanConfiguration
中声明它