SpringMVC第一天HelloWorld

2018-11-13 07:34:32来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

1,普通Servlet的流程是通过配置<servlet></servlet>和<servlet-mapping></servlet-mapping>来拦截请求交给对应的Servlet来处理

使用SpringMVC需要配置一个SpringMVC自带的Servlet,DispatcherServlet,使用他来拦截请求交给SpringMVC处理  web.xml中配置

<servlet>

  <servlet-name>springDispatcherServlet</servlet-name>

  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

    设置springmvc核心配置文件路径,如果不设置,默认到web-inf下去找名字为springDispatcherServlet-servlet.xml的文件

    <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:springmvc.xml</param-value>
    </init-param>

    设置为启动时加载

    <load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

  <servlet-name>springDispatcherServlet</servlet-name>

  <url-parttern>/</url-parttern>

  注意这里使用 / 在struts2中使用的是 /*  表示拦截所有请求,

  /login 代表拦截以/login开头的请求   .do只拦截以.do为后缀的请求

  如果想要同时使用SpringMVC和Servlet就不能使用 / 符号,也就是不能让springmvc拦截所有请求

</servlet-mapping>

2,

创建springmvc.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd

        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

 

<!-- 配置controller扫描包   扫描存放控制器的包名-->

<context:component-scan base-package="com.lyf.springmvc.controller" />

 <!-- 配置视图解析器 -->

<bean class="org.springframework.wb.servlet.view.InternalResourceViewResolver">

  <property name="prefix" value="/view"></property>

  <property name="suffix" value=".jsp"></property>

</bean>

</beans>

3,创建java类 添加@Controller注解   在方法上添加@RequetMapping注解里面指定请求的url

@RequetMapping("/login")

方法返回值自己设置 如return success; 

@Controller

public class HelloWorld{

@RequetMapping("/login")

  public String test(){

  return "success";

}

}  

index.jsp页面假如有一个 <a href="/login">To  HelloWorld</a>

success.jsp中内容为First SpringMVC

当点击To HelloWorld就会转到HelloWorld中的test方法处理 最后return success  通过视图解析器 ,最后跳转到view文件夹下的success.jsp

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:撩课-Java每天10道面试题第4天

下一篇:Springboot-Listener(springboot的事件监听的4种实现方式)