springboot啟動報錯:Consider defining a bean of type 'com.xx.xx.TokenService' in your configuration.


原因:找不到請求的bean類型

1. 方法一:添加config注入bean

 

/**/
@Configuration
public class TokenConfig {
    /**
     *
     */
    @Bean
    public TokenService tokenService() {
        return new TokenService();
    }
}

2. 方法二:在啟動類DemoApplication上添加包所在位置注解

@ComponentScan(value = {"com.bat.demo","com.bat.token.common"})

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM