springboot使用中遇到问题和解决方法
程序员文章站
2022-03-31 10:25:21
...
- yml配置文件无法被加载,修改后系统报错。
配置文件跟换为yml文件后运行报错:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'helloWorldController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'hello1.myname' in value "${hello1.myname}"
以及DataSource等异常。
解决方法:
修改pom文件:
吧**/*.yml文件增加进去
<resources>
。。。
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
<include>**/*.yml</include>
<include>**/*.html</include>
</includes>
<filtering>false</filtering>
</resource>
。。。
推荐阅读
-
Python中logging日志的四个等级和使用
-
在SQL 2012中使用和Oracle 一样的序列
-
DEDE模板中怎么运行php脚本和php变量的使用
-
对layui中的onevent 和event的使用详解
-
javascript中apply、call和bind的使用区别
-
快速入门:使用Azure 数据 Studio进行连接和查询 Azure SQL 数据仓库中的数据
-
java-使用war将spring-boot和angular 7应用程序部署到tomcat 8.5中
-
从入门到精通----Tensorflow中的placeholder和feed_dict的使用方法
-
springboot整合shiro多验证登录功能的实现(账号密码登录和使用手机验证码登录)
-
Eclipse中关于mybatis插件geneartor的使用和遇到的一些问题