【Springboot】xml配置文件报红
2024-03-13 本文已影响0人
地主家有30头牛
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="datasource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="url" value="jdbc:mysql://localhost:3306/PLAYGROUND"></property>
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
</bean>
</beans>
如图的配置文件,【http://www.springframework.org/schema/beans/spring-beans.xsd】的部分始终报红说加载不到,导致<beans>标签也一直报红。
排查了一下引入的文件和配置内容都没什么大问题,最后尝试了一种解决方案是把BEANS配置部分加到<xml-body>标签里,就像这样。
<?xml version="1.0" encoding="UTF-8"?>
<xml-body>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="datasource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="url" value="jdbc:mysql://localhost:3306/PLAYGROUND"></property>
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
</bean>
</beans>
</xml-body>
报红确实是消失了,但是JUNIT加载该XML的时候,就会报文件的第二行,也就是<xml-body>是非法的。
于是去掉<xml-body>标签,XML文件报红的情况下直接加载,发现不影响运行。