博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC一个Controller写多个方法
阅读量:5122 次
发布时间:2019-06-13

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

一.Controller

1 public class MultiController extends MultiActionController { 2  3     public ModelAndView add(HttpServletRequest request,HttpServletResponse response){ 4         System.out.println("add"); 5         String data = "add"; 6         return new ModelAndView("/index","data",data); 7     } 8          9     public ModelAndView update(HttpServletRequest request,HttpServletResponse response){10         System.out.println("update");11         String data = "update";12         return new ModelAndView("/index","data",data);13     }14     15 }

二.spring-servlet.xml

1 
2
12 13
14
15 16
17
18
19
20 21
22
23
24 25 26 27
28
29
30 31

三.web.xml

1 
2
spring
3
org.springframework.web.servlet.DispatcherServlet
4
5
contextConfigLocation
6
classpath:/springmvc/spring-servlet.xml
7
8
1
9
10
11
spring
12
/
13
14

访问路径

转载于:https://www.cnblogs.com/duwenlei/p/3508775.html

你可能感兴趣的文章
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>
hihocoder1187 Divisors
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
前端监控
查看>>
clipboard.js使用方法
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
伪类与超链接
查看>>
centos 7 redis-4.0.11 主从
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
慵懒中长大的人,只会挨生活留下的耳光
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>