springmvc学习路线1-基本配置

时间:2022-01-03 00:16:22

1.第一个springmvc实例helloword 关键点拨

1.1 web.xml文件的配置

<servlet>
  <servlet-name>springMVC</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:config/spring-servlet.xml</param-value>
  </init-param>
  <load-on-startup></load-on-startup>
</servlet>
<servlet-mapping>
  <servlet-name>springMVC</servlet-name>
  <url-pattern>/</url-pattern>
</servlet-mapping>

说明:<url-pattern>/</url-pattern>表示拦截所有请求

1.2 spring-servlet文件的配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:p="http://www.springframework.org/schema/p"
 xmlns:mvc="http://www.springframework.org/schema/mvc"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context.xsd
      http://www.springframework.org/schema/mvc
      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <bean name="/test1/helloworld" class="com.juin.controller.HelloWorldController" />

    <bean id="paramMethodResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
        <property name="paramName" value="do"></property>
    </bean>

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
 </beans>  

说明:配置参数名称解析器paramMethodResolver,spring自带的,我们注入即可。

  解析器是靠什么解析,是paramName配置了do,请求的时候靠这个来解析的。

1.3 新建HelloWorldController.java文件,内容如下:

package com.juin.controller;

public class HelloWorldController {

    String hello = "hello world";
    System.out.println(hello);

}

1.4 运行,在控制台里输出 hello world.

2.静态文件访问(图片,css,js等)

2.1 以图片为例,在1.2的spring-servlet.xml文件中添加

<bean name="/test1/img" class="com.juin.controller.StaticFileController">
        <property name="methodNameResolver">
            <ref bean="paramMethodResolver"/>
        </property>
</bean>

  <!-- 静态文件访问 -->
  <mvc:resources location="/img/" mapping="/img/**"/>
  <mvc:resources location="/js/" mapping="/js/**"/>
  <mvc:resources location="/css/" mapping="/css/**"/>

2.2 创建图片访问类StaticFileController 和 用来显示图片的staticFile.jsp页面

public class StaticFileController extends MultiActionController{
    public ModelAndView img(HttpServletRequest request,HttpServletResponse response){
        return new ModelAndView("/staticFile");
    }

}

3.启用注解和注解优化

3.1启用注解

3.1.1 建立类UserController.java,代码如下:

 package com.juin.annotation;

 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;

 @Controller
 public class UserController {

         //注解
         @RequestMapping(value="/user/addUser",method=RequestMethod.POST)
         public ModelAndView addUser(){
             String result="this is addUser method";
             return new ModelAndView("/annotation","result",result);
         }
         @RequestMapping(value="/user/delUser",method=RequestMethod.GET)
         public ModelAndView delUser(){
             String result="this is delUser method";
             return new ModelAndView("/annotation","result",result);
         }
         @RequestMapping(value="/user/toUser",method=RequestMethod.GET)
         public ModelAndView toUser(){
             return new ModelAndView("/annotation");
         }
 }

说明:@Controller是对类的注解,@RequestMapping是对类中方法的注解。

对应的annotion.jsp的代码为:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <form action="/SpringMVC02/user/addUser" method="post">
        <div>
            <h>注解参数传递</h><br/>
            ${result }<br/>

            <input type="submit" value="post提交">

        </div>
    </form>
</body>
</html>

3.1.2 替换spring-servlet配置文件

 <?xml version="1.0" encoding="UTF-8"?>
 <beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:p="http://www.springframework.org/schema/p"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

     <!-- 扫描指定包下的所有类 -->
     <context:component-scan base-package="com.juin.annotation"/>
     <!-- 启用注解的两个bean -->
     <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
     <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>

     <!-- 静态文件访问 -->
     <mvc:resources location="/img/" mapping="/img/**"/>
     <mvc:resources location="/js/" mapping="/js/**"/>
     <mvc:resources location="/css/" mapping="/css/**"/>

     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
         <property name="prefix" value="/"></property>
         <property name="suffix" value=".jsp"></property>
     </bean>
  </beans>  

3.2 注解优化

3.2.1 用<mvc:annotation-driven/>替换

  <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
  <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>

3.2.2 优化UserController.java中的代码

 package com.juin.annotation;

 import javax.servlet.http.HttpServletRequest;

 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;

 @Controller
 @RequestMapping("/user")
 public class UserController {

         //注解
         @RequestMapping("/addUser")
         public String addUser(HttpServletRequest request){
             String result="this is addUser method";
             request.setAttribute("result", result);
             return "/annotation";
         }
         @RequestMapping("/delUser")
         public String delUser(HttpServletRequest request){
             String result="this is delUser method";
             request.setAttribute("result", result);
             return "/annotation";
         }
         @RequestMapping("/toUser")
         public String toUser(){
             return "/annotation";
         }
 }

4.springmvc参数传递

4.1 创建addUser.jsp表单提交页面,用于提交用户的姓名和年龄

 <%@ page language="java" contentType="text/html; charset=UTF-8"
     pageEncoding="UTF-8"%>
 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>
 <script type="text/javascript" src="../js/jquery-1.7.1.min.js"></script>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>login</title>

 <script type="text/javascript">
     function addUser(){
         var form = document.forms[0];
         form.action = "/SpringMVC4/user/data/addUser";
         form.method="get";
         form.submit();
         }
 </script>

 </head>
 <body>
     <form action="">
         <div>
             <input type="text" name = "userName"/>
              <input type="text" name = "age"/>
             <input type="button" value="提交" onclick="addUser()"/>
         </div>
     </form>
 </body>
 </html>

4.2 创建 User的实体类

 package com.juin.entity;

 public class User {
     private String userName;
     private String age;

     public String getUserName() {
         return userName;
     }

     public void setUserName(String userName) {
         this.userName = userName;
     }

     public String getAge() {
         return age;
     }

     public void setAge(String age) {
         this.age = age;
     }
 }

4.3创建类DataController.java类

 package com.juin.annotation;

 import javax.servlet.http.HttpServletRequest;

 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;

 import com.juin.entity.User;

 @Controller
 @RequestMapping("/user/data")
 public class DataController {

         //注解
         @RequestMapping("/addUser")
         public String addUser(User user,HttpServletRequest request){
 //            String result="this is addUser method";
 //            request.setAttribute("result", result);
             request.setAttribute("userName", user.getUserName());
             request.setAttribute("age", user.getAge());
             return "/userManage";
         }
         @RequestMapping("/delUser")
         public String delUser(HttpServletRequest request){
             String result="this is delUser method";
             request.setAttribute("result", result);
             return "/annotation";
         }
         @RequestMapping("/toUser")
         public String toUser(){
             return "/addUser";
         }
 }

springmvc学习路线1-基本配置的更多相关文章

  1. springMVC学习路线3-整合spring&lpar;annotion方式&rpar;

    个人认为使用框架并不是很难,关键要理解其思想,这对于我们提高编程水平很有帮助.不过,如果用都不会,谈思想就变成纸上谈兵了!!!先技术,再思想.实践出真知. 1.基本概念 1.1 Spring   Sp ...

  2. 【转】selenium学习路线

    selenium学习路线 配置你的测试环境,真对你所学习语言,来配置你相应的selenium 测试环境.selenium 好比定义的语义---“问好”,假如你使用的是中文,为了表术问好,你的写法是“你 ...

  3. SpringMVC 学习 十 SSM环境搭建(三)springMVC文件配置

    SpringMVC文件配置的详细过程,可以查看springMVC环境搭建的注解配置篇<springMVC学习三 注解开发环境搭建> <?xml version="1.0&q ...

  4. springMVC学习记录2-使用注解配置

    前面说了一下使用xml配置springmvc,下面再说说注解配置.项目如下: 业务很简单,主页和输入用户名和密码进行登陆的页面. 看一下springmvc的配置文件: <?xml version ...

  5. springMVC学习记录1-使用XML进行配置

    SpringMVC是整个spring中的一个很小的组成,准确的说他是spring WEB这个模块的下一个子模块,Spring WEB中除了有springMVC还有struts2,webWork等MVC ...

  6. springmvc学习指南 之---第25篇 Spring Bean有三种配置方式

    writed by不要张艳涛, 从tomcat转到了springmvc 现在开始有点不知道该看什么书了,看完了springmvc 学习指南之后 又查了一些书,好多都是内容相近,在找书的过程之中,发现s ...

  7. 一位资深程序员大牛给予Java初学者的学习路线建议

    java学习这一部分其实也算是今天的重点,这一部分用来回答很多群里的朋友所问过的问题,那就是我你是如何学习Java的,能不能给点建议?今天我是打算来点干货,因此咱们就不说一些学习方法和技巧了,直接来谈 ...

  8. 一位资深程序员给予Java初学者的学习路线建议

    一位资深程序员给予Java初学者的学习路线建议 java学习这一部分其实也算是今天的重点,这一部分用来回答很多群里的朋友所问过的问题,那就是我你是如何学习Java的,能不能给点建议?今天我是打算来点干 ...

  9. 我推荐的 Java Web 学习路线

    晚上再 V2 的 Java 的节点看到有人问 Java Web 书籍推荐.我这半年多的时间,也从别的方向开始转向 Java 服务端开发,所以,我来说下我的学习路线,帮助有需要的朋友把半只脚踏进 Spr ...

随机推荐

  1. 4&period;Java网络编程之TCP&sol;UDP

    常见传输协议: UDP , TCP UDP协议:    特点:         1.将数据及源和目的封装成数据包中,不需要建立连接         2.每个数据包的大小限制在64K内         ...

  2. php删除字符串中的所有空格

    function trimall($str)//删除空格 { $qian=array(" "," ","\t","\n" ...

  3. 实现jsp网页设为首页功能

    var url = location.href; var browser_name = navigator.userAgent; if(browser_name.indexOf('Chrome')!= ...

  4. OpenFileDialog

    打开一个文件         private void button1_Click(object sender, EventArgs e)         {             openFile ...

  5. ffmpeg学习笔记

           对于每一个刚開始学习的人,刚開始接触ffmpeg时,想必会有三个问题最为关心,即ffmpeg是什么?能干什么?怎么開始学习?本人前段时间開始接触ffmpeg,在刚開始学习过程中.这三个问 ...

  6. 精通Activity

    在平时开发中,Activity我们每个人应用的都滚瓜烂熟,回忆起来没有太难的地方,但是我们学习知识不应该只知其一不知其二,这样才能在学习的道理上越走越远,今天我要给大家分享的内容会让大家明白一些And ...

  7. java封装的概念

    继承.封装.多态.抽象是面向对象编程的四大基本概念,其中封装尤为重要,因为从我们学习JAVA开始,就基本上接触了封装,因为JAVA中的所有程序都是写在类中的,类也能当做一种封装. 在面向对象中封装是指 ...

  8. xpath 根据根节点找数据

  9. Loadrnner 参数化策略

    参数化策略 关键:类型+数据+策略 1.Select next row ( 如何取) 选择下一行 1)Sequential:顺序的 每个VU都从第一行开始,顺序依次向下取值:数据可以循环重复使用:-- ...

  10. MySQL 5&period;6 &amp&semi; 5&period;7最优配置文件模板

    Inside君整理了一份最新基于MySQL 5.6和5.7的配置文件模板,基本上可以说覆盖90%的调优选项,用户只需根据自己的服务器配置稍作修改即可,如InnoDB缓冲池的大小.IO能力(innodb ...