SpringMVC实例

前端之家收集整理的这篇文章主要介绍了SpringMVC实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

@H_404_4@
    <?xml version="1.0" encoding="UTF-8"?>  
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
        xmlns="http://java.sun.com/xml/ns/javaee"  
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"  
        id="WebApp_ID" version="3.0">  
      
    <!-- 中央转发器 -->  
      
        <servlet>  
            <servlet-name>springmvc</servlet-name>  
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
        </servlet>  
        <servlet-mapping>  
            <servlet-name>springmvc</servlet-name>  
            <!-- //不要配置/*,否则会出现404错误 -->  
            <url-pattern>*.do</url-pattern>  
        </servlet-mapping>  
      
        <display-name>Spring-Mvc</display-name>  
      
    </web-app>  

3.2 创建springmvc的核心配置文件
    <?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:mvc="http://www.springframework.org/schema/mvc"  
        xmlns:context="http://www.springframework.org/schema/context"  
        xmlns:aop="http://www.springframework.org/schema/aop"  
        xmlns:tx="http://www.springframework.org/schema/tx"  
        xsi:schemaLocation="http://www.springframework.org/schema/beans   
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
            http://www.springframework.org/schema/mvc   
            http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd   
            http://www.springframework.org/schema/context   
            http://www.springframework.org/schema/context/spring-context-3.0.xsd   
            http://www.springframework.org/schema/aop   
            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd   
            http://www.springframework.org/schema/tx   
            http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">      
              
              
            <!-- 配置文件形式要配置的组建:Controller,handlermapping(有默认规则),viewResolver,interceptor -->         
            <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
            <!-- 配置从项目根目录到一端路径 -->  
                <property name="prefix" value="/WEB-INF/jsp/"/>  
                <!-- 文件后缀名称 -->  
                <property name="suffix" value=".jsp"/>  
            </bean>  
              
            <!-- 配置controller,name为要访问的控制器的路径-->  
            <bean id="TestController" name="/hello.do" class="com.url.controller.TestController"></bean>  
              
    </beans>  

3.3 创建控制器
    package com.url.controller;  
      
    import javax.servlet.http.HttpServletRequest;  
    import javax.servlet.http.HttpServletResponse;  
      
    import org.springframework.web.servlet.ModelAndView;  
    import org.springframework.web.servlet.mvc.AbstractController;  
      
    public class TestController extends AbstractController {  
      
        @Override  
        protected ModelAndView handleRequestInternal(HttpServletRequest arg0,HttpServletResponse arg1) throws Exception {  
            System.out.println("hello springmvc");  
            //ModelAndView会被视图解析器解析自动加上前缀和后缀  
            return new ModelAndView("index");  
        }  
      
    }  

来自:

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

原文链接:https://www.f2er.com/springmvc/460471.html

猜你在找的SpringMVC相关文章