欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【ssm错误】ssm整合的一个包错误,无法将xml打包编译,从而报错

程序员文章站 2022-04-25 16:22:10
...

错误内容:

defined in class path resource [spring-mybatis.xml]: Initialization of bean failed; nested exception is org

解决办法:在web.xml中加入如下配置:

<build>
<resources>
          <resource>
              <directory>src/main/java</directory>
              <includes>
                  <include>**/*.xml</include>
              </includes>
              <filtering>true</filtering>
          </resource>
      </resources>
</build>

 

相关标签: ssm