搭建一个SSM项目 配置xml问题导致启动报错

ssm项目整合(Spring+SpringMVC+Mybatis)

该项目实现的功能有

1.用户登录

2.新增用户信息

3.返回所有用户信息

4.更新用户信息

5删除用户信息

针对原文链接 https://blog.csdn.net/qq_23994787/article/details/73699149

存在问题解决方法:

1.web.xml 配置问题。


contextConfigLocation
classpath*:config/spring.xml;classpath*:config/spring-mybatis.xml


spring mvc 配置文件
contextConfigLocation
classpath*:config/spring-mvc.xml

注意:classpath 后面加入* ,配置文件路径写全。

 同样 db.properties数据库配置文件路径,
 spring.xml 中修改:



你可能感兴趣的:(搭建一个SSM项目 配置xml问题导致启动报错)