一、SpringMVC注解入门
1. 创建web项目
2. 在springmvc的配置文件中指定注解驱动,配置扫描器
- <!-- mvc的注解驱动 -->
- <mvc:annotation-driven />
- <!--只要定义了扫描器,注解驱动就不需要,扫描器已经有了注解驱动的功能 -->
- <context:component-scan base-package="org.study1.mvc.controller" />
- <!-- 前缀+ viewName +后缀 -->
- <bean
- class="org.springframework.web.servlet.view.InternalResourceViewResolver">
- <!-- WebContent(WebRoot)到某一指定的文件夹的路径 ,如下表示/WEB-INF/view/*.jsp -->
- <property name="prefix" value="/WEB-INF/view/"></property>
- <!-- 视图名称的后缀 -->
- <property name="suffix" value=".jsp"></property>
- </bean>
<context:component-scan/> 扫描指定的包中的类上的注解,常用的注解有:
@Controller 声明Action组件
@Service 声明Service组件 @Service("myMovieLister")
@Repository 声明Dao组件
@Component 泛指组件, 当不好归类时.
@RequestMapping("/menu") 请求映射
@Resource 用于注入,( j2ee提供的 ) 默认按名称装配,@Resource(name="beanName")
@Autowired 用于注入,(srping提供的) 默认按类型装配
@Transactional( rollbackFor={Exception.class}) 事务管理
@ResponseBody
@Scope("prototype") 设定bean的作用
3. @controller:标识当前类是控制层的一个具体的实现
4. @requestMapping:放在方法上面用来指定某个方法的路径,当它放在类上的时候相当于命名空间需要组合方法上的requestmapping来访问。
- @Controller // 用来标注当前类是springmvc的控制层的类
- @RequestMapping("/test") // RequestMapping表示 该控制器的唯一标识或者命名空间
- public class TestController {
- /**
- * 方法的返回值是ModelAndView中的
- */
- @RequestMapping("/hello.do") // 用来访问控制层的方法的注解
- public String hello() {
- System.out.println("springmvc annotation... ");
- return "jsp1/index";
- }
- //*****
- }
在本例中,项目部署名为mvc,tomcat url为 http://localhost,所以实际为:http://localhos/mvc
在本例中,因为有命名空间 /test,所以请求hello方法地址为:http://localhost/mvc/test/hello.do
输出:springmvc annotation...
二、注解形式的参数接收
1. HttpServletRequest可以直接定义在参数的列表,通过该请求可以传递参数
url:http://localhost/mvc/test/toPerson.do?name=zhangsan
- /**
- * HttpServletRequest可以直接定义在参数的列表,
- *
- */
- @RequestMapping("/toPerson.do")
- public String toPerson(HttpServletRequest request) {
- String result = request.getParameter("name");
- System.out.println(result);
- return "jsp1/index";
- }
可以从HttpServletRequest 取出“name”属性,然后进行操作!如上,可以取出 “name=zhangsan”
输出:zhangsan
2. 在参数列表上直接定义要接收的参数名称,只要参数名称能匹配的上就能接收所传过来的数据, 可以自动转换成参数列表里面的类型,注意的是值与类型之间是可以转换的
2.1传递多种不同类型的参数:
url:http://localhost/mvc/test/toPerson1.do?name=zhangsan&age=14&address=china&birthday=2000-2-11
- /**
- * 传递的参数的名字必须要与实体类的属性set方法后面的字符串匹配的上才能接收到参数,首字符的大小写不区分
- * 请求中传的参数只要是能和参数列表里面的变量名或者实体里面的set后面的字符串匹配的上就能接收到 a
- *
- */
- @RequestMapping("/toPerson1.do")
- public String toPerson1(String name, Integer age, String address,
- Date birthday) {
- System.out.println(name + " " + age + " " + address + " " + birthday);
- return "jsp1/index";
- }
- /**
- * 注册时间类型的属性编辑器,将String转化为Date
- */
- @InitBinder
- public void initBinder(ServletRequestDataBinder binder) {
- binder.registerCustomEditor(Date.class, new CustomDateEditor(
- new SimpleDateFormat("yyyy-MM-dd"), true));
- }
输出:zhangsan 14 china Fri Feb 11 00:00:00 CST 2000
2.2传递数组:
url:http://localhost/mvc/test/toPerson2.do?name=tom&name=jack
- /**
- * 对数组的接收,定义为同名即可
- */
- @RequestMapping("/toPerson2.do")
- public String toPerson2(String[] name) {
- for (String result : name) {
- System.out.println(result);
- }
- return "jsp1/index";
- }
输出:tom jack
2.3传递自定义对象(可多个):
url:http://localhost/mvc/test/toPerson3.do?name=zhangsan&age=14&address=china&birthday=2000-2-11
User 定义的属性有:name,age,并且有各自属性的对应的set方法以及toString方法
Person定义的属性有:name,age.address,birthday,并且有各自属性的对应的set方法以及toString方法
- /**
- *
- * 传递的参数的名字必须要与实体类的属性set方法后面的字符串匹配的上才能接收到参数,首字符的大小写不区分
- * 请求中传的参数只要是能和参数列表里面的变量名或者实体里面的set后面的字符串匹配的上就能接收到
- *
- */
- @RequestMapping("/toPerson3.do")
- public String toPerson3(Person person, User user) {
- System.out.println(person);
- System.out.println(user);
- return "jsp1/index";
- }
输出:
Person [name=zhangsan, age=14, address=china, birthday=Fri Feb 11 00:00:00 CST 2000]
User [name=zhangsan, age=14]
自动封装了对象,并且被分别注入进来!
三、注解形式的结果返回
1. 数据写到页面,方法的返回值采用ModelAndView, new ModelAndView("index", map);,相当于把结果数据放到response里面
url:http://localhost/mvc/test/toPerson41.do
url:http://localhost/mvc/test/toPerson42.do
url:http://localhost/mvc/test/toPerson43.do
url:http://localhost/mvc/test/toPerson44.do
- /**
- * HttpServletRequest可以直接定义在参数的列表,并且带回返回结果
- *
- */
- @RequestMapping("/toPerson41.do")
- public String toPerson41(HttpServletRequest request) throws Exception {
- request.setAttribute("p", newPesion());
- return "index";
- }
- /**
- *
- * 方法的返回值采用ModelAndView, new ModelAndView("index", map);
- * ,相当于把结果数据放到Request里面,不建议使用
- *
- */
- @RequestMapping("/toPerson42.do")
- public ModelAndView toPerson42() throws Exception {
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("p", newPesion());
- return new ModelAndView("index", map);
- }
- /**
- *
- * 直接在方法的参数列表中来定义Map,这个Map即使ModelAndView里面的Map,
- * 由视图解析器统一处理,统一走ModelAndView的接口,也不建议使用
- */
- @RequestMapping("/toPerson43.do")
- public String toPerson43(Map<String, Object> map) throws Exception {
- map.put("p", newPesion());
- return "index";
- }
- /**
- *
- * 在参数列表中直接定义Model,model.addAttribute("p", person);
- * 把参数值放到request类里面去,建议使用
- *
- */
- @RequestMapping("/toPerson44.do")
- public String toPerson44(Model model) throws Exception {
- // 把参数值放到request类里面去
- model.addAttribute("p", newPesion());
- return "index";
- }
- /**
- * 为了测试,创建一个Persion对象
- *
- */
- public Person newPesion(){
- Person person = new Person();
- person.setName("james");
- person.setAge(29);
- person.setAddress("maami");
- SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
- Date date = format.parse("1984-12-28");
- person.setBirthday(date);
- return person;
- }
以上四种方式均能达到相同的效果,但在参数列表中直接定义Model,model.addAttribute("p", person);把参数值放到request类里面去,建议使用
2. Ajax调用springmvc的方法:直接在参数的列表上定义PrintWriter,out.write(result);把结果写到页面,建议使用的
url:http://localhost/mvc/test/toAjax.do
- /**
- *
- * ajax的请求返回值类型应该是void,参数列表里直接定义HttpServletResponse,
- * 获得PrintWriter的类,最后可把结果写到页面 不建议使用
- */
- @RequestMapping("/ajax1.do")
- public void ajax1(String name, HttpServletResponse response) {
- String result = "hello " + name;
- try {
- response.getWriter().write(result);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- *
- * 直接在参数的列表上定义PrintWriter,out.write(result);
- * 把结果写到页面,建议使用的
- *
- */
- @RequestMapping("/ajax2.do")
- public void ajax2(String name, PrintWriter out) {
- String result = "hello " + name;
- out.write(result);
- }
- /**
- * 转向ajax.jsp页面
- */
- @RequestMapping("/toAjax.do")
- public String toAjax() {
- return "ajax";
- }
ajax页面代码如下:
- <script type="text/javascript" src="js/jquery-1.6.2.js"></script>
- <script type="text/javascript">
- $(function(){
- $("#mybutton").click(function(){
- $.ajax({
- url:"test/ajax1.do",
- type:"post",
- dataType:"text",
- data:{
- name:"zhangsan"
- },
- success:function(responseText){
- alert(responseText);
- },
- error:function(){
- alert("system error");
- }
- });
- });
- });
- </script>
- </head>
- <body>
- <input id="mybutton" type="button" value="click">
- </body>
四、表单提交和重定向
1、表单提交:
请求方式的指定:@RequestMapping( method=RequestMethod.POST )可以指定请求方式,前台页面就必须要以它制定好的方式来访问,否则出现405错误
表单jsp页面:
- <html>
- <head>
- <base href="<%=basePath%>">
- <title>SpringMVC Form</title>
- </head>
- <body>
- <form action="test/toPerson5.do" method="post">
- name:<input name="name" type="text"><br>
- age:<input name="age" type="text"><br>
- address:<input name="address" type="text"><br>
- birthday:<input name="birthday" type="text"><br>
- <input type="submit" value="submit"><br>
- </form>
- </body>
- </html>
对应方法为:
- /**
- * 转向form.jsp页面
- * @return
- */
- @RequestMapping("/toform.do")
- public String toForm() {
- return "form";
- }
- /**
- *
- * @RequestMapping( method=RequestMethod.POST)
- * 可以指定请求方式,前台页面就必须要以它制定好的方式来访问,否则出现405错误 a
- *
- */
- @RequestMapping(value = "/toPerson5.do", method = RequestMethod.POST)
- public String toPerson5(Person person) {
- System.out.println(person);
- return "jsp1/index";
- }
- /**
- *
- * controller内部重定向
- * redirect:加上同一个controller中的requestMapping的值
- *
- */
- @RequestMapping("/redirectToForm.do")
- public String redirectToForm() {
- return "redirect:toform.do";
- }
- /**
- *
- * controller之间的重定向:必须要指定好controller的命名空间再指定requestMapping的值,
- * redirect:后必须要加/,是从根目录开始
- */
- @RequestMapping("/redirectToForm1.do")
- public String redirectToForm1() {
- //test1表示另一个Controller的命名空间
- return "redirect:/test1/toForm.do";
- }
springmvc入门基础之注解和参数传递的更多相关文章
-
SpringMVC入门(基于注解方式实现)
---------------------siwuxie095 SpringMVC 入门(基于注解方式实现) SpringMVC ...
-
SpringMVC入门和常用注解
SpringMVC的基本概念 关于 三层架构和 和 MVC 三层架构 我们的开发架构一般都是基于两种形式,一种是 C/S 架构,也就是客户端/服务器,另一种是 B/S 架构,也就 是浏览器服务器.在 ...
-
<;SpringMvc>;入门二 常用注解
1.@RequestMapping @Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME ...
-
springMVC学习笔记(二)-----注解和非注解入门小程序
最近一直在做一个电商的项目,周末加班,忙的都没有时间更新博客了.终于在上周五上线了,可以轻松几天了.闲话不扯淡了,继续谈谈springMvc的学习. 现在,用到SpringMvc的大部分使用全注解配置 ...
-
零基础学习java------38---------spring中关于通知类型的补充,springmvc,springmvc入门程序,访问保护资源,参数的绑定(简单数据类型,POJO,包装类),返回数据类型,三大组件,注解
一. 通知类型 spring aop通知(advice)分成五类: (1)前置通知[Before advice]:在连接点前面执行,前置通知不会影响连接点的执行,除非此处抛出异常. (2)正常返回通知 ...
-
springmvc注解和参数传递
一.SpringMVC注解入门 1. 创建web项目2. 在springmvc的配置文件中指定注解驱动,配置扫描器 <!-- mvc的注解驱动 --> <mvc:annotation ...
-
springMVC1 springmvc的基础知识
springmvc第一天 springmvc的基础知识 springmvc课程安排: 第一天: 基础知识 springmvc框架(重点) mvc在b/s系统中应用方式 springmvc框架原理(Di ...
-
SprimgMVC学习笔记(一)—— SpringMVC入门
一.什么是 SpringMVC ? 在介绍什么是 SpringMVC 之前,我们先看看 Spring 的基本架构.如下图: 我们可以看到,在 Spring 的基本架构中,红色圈起来的 Spring W ...
-
SpringMVC 入门、请求、响应
目录 SpringMVC 概述 SSM 简介 MVC 简介 SpringMVC 简介 入门案例 Spring 技术架构 SpringMVC 基础配置 常规配置 Controller 加载控制 静态资源 ...
随机推荐
-
如何使用Microsoft技术栈
Microsoft技术栈最近有大量的变迁,这使得开发人员和领导者都想知道他们到底应该关注哪些技术.Microsoft自己并不想从官方层面上反对Silverlight这样的技术,相对而言他们更喜欢让这种 ...
-
形如(function(){}).call()的js语句
研究新浪微博的自动登陆流程,其中涉及到它的加密算法脚本,其中有一段如下形式的代码: (function(){...}).call(name) 其中红色的....是函数的内部各种实现,name为一个对象 ...
-
C语言的本质(22)——C标准库之字符串操作
编译器.浏览器.Office套件等程序的主要功能都是符号处理,符号处理功能在程序中占相当大的比例,无论多复杂的符号处理都是由各种基本的字符串操作组成的,下面介绍如何用C语言的库函数做字符串初始化.取长 ...
-
UWP必备知识:App File Explorer
由来 应用在手机端出问题时如果查看LocalState文件夹的数据库文件与日志文件 如何查看应用在手机端占用带宽与占用CPU内存情况 介绍 [UWP开发之Mvvmlight实践七:如何查找设备(Mob ...
-
资深小白带你走进OS Memory
图片来源:http://www.tomshardware.com/ 序言: Memory(内存)是一台计算机组成的重要部分,也是最基础的一部分.其它基础组件有主板.CPU.磁盘.显卡(可独立可集成)等 ...
-
拾遗与填坑《深度探索C++对象模型》3.2节
<深度探索C++对象模型>是一本好书,该书作者也是<C++ Primer>的作者,一位绝对的C++大师.诚然该书中也有多多少少的错误一直为人所诟病,但这仍然不妨碍称其为一本好书 ...
-
记一次产品需求:图片等比缩放和CSS自适应布局16:9
前言 前阵子,产品跑过来问我现有的模板中没有图片模板,需要添加一个图片模板:然而,他要求图片在展示区最好能够实现随着窗口的变化而自动按图片比例等比缩放,并且居中展示图片.我当时想着,抛开技术实现层面, ...
-
SQL Server实际执行计划COST";欺骗";案例
有个系统,昨天Support人员发布了相关升级脚本后,今天发现系统中有个功能不能正常使用了,直接报超时了(Timeout expired)的错误.定位到相关相关存储过程后,然后在优化分析的过程中,又遇 ...
-
[转]CSS clear both清除浮动
DIV+CSS clear both清除产生浮动 我们知道有时使用了css float浮动会产生css浮动,这个时候就需要清理清除浮动,我们就用clear样式属性即可实现. 接下来我们来认识与学习cs ...
-
shell 变量相关的命令
变量="变量" readonly 变量名="变量" 表示设置该变量为只读变量 ,这个变量不能别改变 echo $变量名 set 显示本地所有的变量 unse ...