@ConfigurationProperties(prefix = "imooc.security")public class SecurityProperties {.......}@RestControllerpublic class BrowserSecurityController {@Autowired private SecurityProperties securityProperties;}啟動運行會報錯:***************************APPLICATION FAILED TO START***************************Description:Field securityProperties in com.imooc.security.browser.BrowserSecurityController required a bean of type 'imooc.security.core.properties.SecurityProperties' that could not be found.Action:Consider defining a bean of type 'imooc.security.core.properties.SecurityProperties' in your configuration.
使用@ConfigurationProperties(prefix = "demo")注解修飾的類注入不進來
小波66
2018-09-12 20:32:27