南开小巷

导航

2016年3月31日 #

Spring的@ModelAttribute注解

摘要: 1. 一、绑定请求参数到指定对象 Java代码 public String test1(@ModelAttribute("user") UserModel user) Java代码 Java代码 只是此处多了一个注解@ModelAttribute("user"),它的作用是将该绑定的命令对象以“us 阅读全文

posted @ 2016-03-31 17:51 南开小巷 阅读(4913) 评论(0) 推荐(0) 编辑

Spring MVC 的@RequestParam注解和request.getParameter("XXX")

摘要: 在SpringMVC后台控制层获取参数的方式主要有两种,一种是request.getParameter("name"),另外一种是用注解@RequestParam直接获取。这里主要讲这个注解 一、基本使用,获取提交的参数 后端代码: Java代码 @RequestMapping("testReque 阅读全文

posted @ 2016-03-31 17:49 南开小巷 阅读(6571) 评论(0) 推荐(1) 编辑

SpringMVC 示例实战教程

摘要: 一、SpringMVC基础入门,创建一个HelloWorld程序 1.首先,导入SpringMVC需要的jar包。 2.添加Web.xml配置文件中关于SpringMVC的配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <!--configure the setting 阅读全文

posted @ 2016-03-31 15:55 南开小巷 阅读(210) 评论(0) 推荐(0) 编辑

<context-param>与<init-param>的区别与作用

摘要: <context-param>的作用:web.xml的配置中<context-param>配置作用1. 启动一个WEB项目的时候,容器(如:Tomcat)会去读它的配置文件web.xml.读两个节点: <listener></listener> 和 <context-param></context- 阅读全文

posted @ 2016-03-31 11:10 南开小巷 阅读(315) 评论(0) 推荐(0) 编辑