ssm
Vidor_Chan
这个作者很懒,什么都没留下…
展开
-
Maven搭建Spring+SpringMVC+Mybatis
Maven+Tomcat8+Idea搭建SSM框架 集成Spring、Spring MVC 项目结构如下所示: Spring部分: 1. web.xml a. 监听器(在启动web容器时加载) 2. spring.xml a. 扫描所有除了controller包的其他包 b. 声明式事 web.xml代码: 3.1 version <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.j原创 2020-08-30 00:04:53 · 116 阅读 · 0 评论 -
IDEA ClassNotFoundException: org.springframework.web.context.ContextLoaderListener报错
问题描述: IDEA中启动tomcat,报错ContextLoaderListener找不到 解决问题: 因为打包时候没有将引用资源打包出来,所以需要手动添加资源文件到输出包中。 IDEA中的操作: 在IDEA中点击File > Project Structure > Artifacts > 在右侧Output Layout右击项目名,选择Put into Output Root 运行效果: 补充: 项目结构 以上结果显示的是 /webapp/index.jsp的内容 ...原创 2020-08-28 23:56:19 · 412 阅读 · 0 评论