博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC 非注解配置
阅读量:6176 次
发布时间:2019-06-21

本文共 864 字,大约阅读时间需要 2 分钟。

web.xml配置:

springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
/WEB-INF/springmvc/*.xml
1
springmvc
*.do

 

/WEB-INF/springmvc/路径下文件结构:

controller配置

servlet-controller.xml

1 
2
3
4

 

servlet-forward.xml

 

URL handler处理配置

servlet-handler.xml

1 
2
3
4
5
6
testController
7
8
9

 

拦截器配置

servlet-interceptor.xml

 

视图配置

servlet-resolver.xml

1 
2
3
4 5
6
7

 

转载于:https://www.cnblogs.com/mingluosunshan/p/5445988.html

你可能感兴趣的文章
maven打包报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.5:test
查看>>
DICOM医学图像处理:WEB PACS初谈
查看>>
网址5
查看>>
django官方文档学习-入门part3创建用户视图
查看>>
windows10 使用gitblit搭建git服务器
查看>>
小程序 - tabBar
查看>>
判断浏览器是否支持flash
查看>>
mysql创建用户
查看>>
js深度克隆对象
查看>>
Hadoop基础-配置历史服务器
查看>>
vue - 条件语句
查看>>
System.nanoTime()和System.currentTimeMillis()性能问题
查看>>
VirtualBox使用物理硬盘建立磁盘
查看>>
分享Silverlight/Windows8/WPF/WP7/HTML5周学习导读(6月4日-6月10日)
查看>>
java实现Comparable接口和Comparator接口,并重写compareTo方法和compare方法
查看>>
oalTouch (OpenAL的一个应用)
查看>>
Installing GLUT for MinGW [转]
查看>>
WCF 报错:通信对象System.ServiceModel.Channels.ServiceChannel 无法用于通信,因为其处于“出错”状态。...
查看>>
数据结构---->图的遍历
查看>>
IronPython for ASP.NET 部署注意事项
查看>>