我正在使用springboot 1.3.8并且我在带有参数的构造函数上有一个@Autowired
但是我收到错误:找不到默认构造函数...
@SpringBootApplication
public class App implements CommandLineRunner {
private ApplicationContext context;
private CLIHelper cliHelper;
@Autowired
public App(ApplicationContext context, CLIHelper cliHelper) {
this.context = context;
this.cliHelper = cliHelper;
}
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}
答案 0 :(得分:7)
您的课程已使用@SpringBootApplication
进行注释,该@Configuration
也是@Configuration
。 @Configuration
应该有一个默认的no-args构造函数。
来自javadoc:
@Configuration类必须具有default / no-arg构造函数并且可以 不要使用@Autowired构造函数参数。
从Spring 4.3版开始,您可以为<Context>
<Resource name="jdbc/postgres" auth="Container"
type="javax.sql.DataSource" driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://127.0.0.1:5433/peopledb"
username="postgres" password="password" maxActive="20" maxIdle="10"
maxWait="-1"/>
</Context>
类进行构造函数注入。在Spring Boot 1.5.3版本上测试过,它运行良好。
Here是Spring 4.3的发行说明。以下是您需要的功能:
@Configuration类支持构造函数注入。