日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

控制台出现Failed to bind properties under ‘spring.datasource‘ to javax.sql.DataSource

發布時間:2025/3/12 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 控制台出现Failed to bind properties under ‘spring.datasource‘ to javax.sql.DataSource 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

網上查了下,沒有找打相關的報錯解決辦法,所以在解決問題后,整理到網上,幫助有需要的朋友。

springboot整合druid時,引入了druid的數據源,在配置文件application.yml中配置了相關配置

initialSize: 5minIdle: 5maxActive: 20maxWait: 60000timeBetweenEvictionRunsMillis: 60000minEvictableIdleTimeMillis: 300000validationQuery: SELECT 1 FROM DUALtestWhileIdle: truetestOnBorrow: falsetestOnReturn: falsepoolPreparedStatements: true # 配置監控統計攔截的filters,去掉后監控界面sql無法統計,'wall'用于防火墻filters: stat,wall,log4jmaxPoolPreparedStatementPerConnectionSize: 20useGlobalDataSourceStat: trueconnectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500

也作了相關配置 DruidConfig.class

@Configuration public class DruidConfig {@ConfigurationProperties(prefix = "spring.datasource")@Beanpublic DataSource druid() {return new DruidDataSource();}// 配置Druid的監控// 1、配置一個管理后臺的Servlet@Beanpublic ServletRegistrationBean statViewServlet() {ServletRegistrationBean bean = new ServletRegistrationBean(new StatViewServlet(), "/druid/*");Map<String, String> initParams = new HashMap<>();initParams.put("loginUsername", "admin");initParams.put("loginPassword", "123456");initParams.put("allow", "");// 默認就是允許所有訪問initParams.put("deny", "10.18.172.124");bean.setInitParameters(initParams);return bean;}// 2、配置一個web監控的filter@Beanpublic FilterRegistrationBean webStatFilter() {FilterRegistrationBean bean = new FilterRegistrationBean();bean.setFilter(new WebStatFilter());Map<String, String> initParams = new HashMap<>();initParams.put("exclusions", "*.js,*.css,/druid/*");bean.setInitParameters(initParams);bean.setUrlPatterns(Arrays.asList("/*"));return bean;} }

但是在啟動時報錯:


APPLICATION FAILED TO START


Description:

控制臺出現Failed to bind properties under ‘spring.datasource’ to javax.sql.DataSource:

Property: spring.datasource.filters Value: stat,wall,log4j Origin: class path resource [application.yml]:24:14 Reason: org.apache.log4j.Logger

Action:

Update your application’s configuration

根據報錯提示在配置文件的24行,查看配置文件,該行代碼是 filters: stat,wall,log4j

看報錯原因Reason: org.apache.log4j.Logger,于是猜想少了log4j的相關依賴,在pom中引入相關依賴

<!-- https://mvnrepository.com/artifact/log4j/log4j --><dependency><groupId>log4j</groupId><artifactId>log4j</artifactId><version>1.2.17</version></dependency>

再次啟動,成功!

總結

以上是生活随笔為你收集整理的控制台出现Failed to bind properties under ‘spring.datasource‘ to javax.sql.DataSource的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。