Springmvc framework 框架配置

官网:http://www.springsource.org/spring-framework  下载相关jar包与依赖包(新版不提供依赖包下载,或者MAVEN 管理)
文档:
http://static.springsource.org/spring/docs/current/spring-framework-reference/html/

现在是最新是3.2版本
web.xml配置(部分 如拦截器)

<?xml version="1.0" encoding="UTF-8"?>  
<web-app xmlns="http://java.sun.com/xml/ns/javaee"   
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
            xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"  
            version="3.0" metadata-complete="true">  
    <display-name></display-name>

    <!-- DispatcherServlet配置 -->
    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/springMvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>

    <!-- Spring配置 -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- 指定Spring Bean的配置文件所在目录。默认配置在WEB-INF目录下 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath*:/applicationContext.xml</param-value>
    </context-param>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

springMvc.xml 配置(名字与上面的Serverlet名字一致,默认是spring-servlet.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-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/mvc      
           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <!-- 启用springmvc 注解 -->
    <context:annotation-config />

    <!-- 设置使用注解的类所在的jar包(上面的配置可以不写) -->
    <context:component-scan base-package="cn.base.web.controller"></context:component-scan>

    <!-- 完成请求和注解POJO的映射 -->
    <bean
        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />

    <!-- 对转向页面的路径解析。prefix:前缀, suffix:后缀 -->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver"
        p:prefix="/jsp/" p:suffix=".jsp" />

</beans>

applicationContext.xml

这里可以配置dao与service的扫描注解JDBC或Hibernate

package cn.base.web.controller;

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

@Controller
public class HelloWorldController {
    @RequestMapping("/hello.html")
    public String index() {
        return "hello";
    }

    @RequestMapping(value = "/welcome.html", method = RequestMethod.GET)
    public String welcomeMehod() {
        return "welcome";
    }
}
新建hello与welcome的jsp页面
访问 http://localhost:8080/springmvc/jsp/hello.jsp  一切正常 简单记录尴尬!
原文地址:https://www.cnblogs.com/Irving/p/2836490.html