Spring MVC文件配置以及参数传递示例详解

时间:2021-05-20

web.xml文件配置

创建好一个SpringMVC项目后,需要在需要在WB-INF文件夹下配置web.xml文件

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://ponent-scan> <!--自动开启MVC模式注解--> <mvc:annotation-driven></mvc:annotation-driven> <!--将请求映射到标注@RequestMapping注解的控制器和处理方法上--> <mvc:default-servlet-handler></mvc:default-servlet-handler> <!--视图解析器--> <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!--前缀后缀--> <property name="prefix" value="/"></property> <property name="suffix" value=".jsp"></property> </bean></beans>

第一个SpringMVC实例

index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %><html> <head> <title>$Title$</title> </head> <body> 哈哈哈哈哈 </body></html>

测试类:

package cn.zhc.test;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;@Controllerpublic class Test { @RequestMapping("/hello.do") public String hello(){ System.out.println("hhhhhhhhhhhh"); return "index"; }}

在项目运行后,在前端页面路径后输入/hello.do,控制台会输出hhhhhhhhhhhh

参数传递

view到controller 四种方式

@RequestMapping("/hello.do") public String hello(String name){ //路径后加?name= 不加会传null System.out.println(name); return "index"; } //Controller方法方法中参数前加@RequestParam进行直接入参 @RequestMapping("/hello.do") public String hello(@RequestParam String name){ //不传参会请求错误400 System.out.println(name); return "index"; } @RequestMapping("/hello.do") public String hello(@RequestParam(value = "name" ,required = false) String name){ //required是否需要传参 System.out.println(name); return "index"; } @RequestMapping(value = "/hello.do",method = RequestMethod.GET,params = "name") public String hello(String name){ //不传参会请求错误400 System.out.println(name); return "index"; }

controller到view 三种方式

@RequestMapping("/hello.do") public ModelAndView hello(){ ModelAndView mv = new ModelAndView(); mv.addObject("name","zhu");//添加模型数据 mv.setViewName("index");//设置视图名称 return mv; } @RequestMapping("/hello.do") public String hello(Model model){ model.addAttribute("name","huai"); model.addAttribute("chang"); //在model中若不指定key,则使用默认对象的类型作为key return "index"; } @RequestMapping("/hello.do") public String hello(Map<String,Object> map){ map.put("name","lisa"); return "index"; }

总结

到此这篇关于Spring MVC文件配置以及参数传递的文章就介绍到这了,更多相关SpringMVC文件配置参数传递内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章