Spring MVC入门(1)---配置

之前在面试的时候,我的面试官有问过我有没有使用过spring mvc,之前我只是知道ssh三大框架,只是知道Struts2也是一个web开发的mvc框架,在网上看了之后我了解到springmvc 就是一个简单的web 框架,上手很快,可以代替SSH框架。springmvc 比 struts2 性能优一些。

spring-mvc配置文件包括两部分,一个是spring传统配置文件,“applicationContext.xml”,主要配置代码中各种bean以及依赖关系;另外一个是spring-mvc特有的配置文件,处理跳转的代理类得,为“spring-mvc.xml”。

首先,我们需要在web.xml中配置如下内容

    <!-- 加载spring配置文件 applicationContext.xml -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    <!-- spring 监听器 -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 编码字符集统一为UTF-8(过滤器) -->
    <filter>
        <display-name>encodingFilter</display-name>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <!-- spring mvc 处理类 -->
    <servlet>
        <display-name>springmvc</display-name>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 加载spring mvc配置文件 spring-servlet.xml -->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:applicationContext.xml,classpath:spring-mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- 后缀名 -->
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>

    <login-config>
        <auth-method>BASIC</auth-method>
    </login-config>

<load-on-startup>1</load-on-startup>是启动顺序,让这个Servlet随Servletp容器一起启动
这里的login-config中配置的是四种认证类型:
BASIC:HTTP规范,Base64
DIGEST:HTTP规范,数据完整性强一些,但不是SSL
CLIENT-CERT:J2EE规范,数据完整性很强,公共钥匙(PKC)
FORM:J2EE规范,数据完整性非常弱,没有加密,允许有定制的登陆界面。

然后是对上面的applicationContext.xml的文件配置,这里用的是classpath的文件路径,就是说applicationContext文件是放在src目录下面的

<?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" 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">
<!-- 配置spring-mvc的解析包 -->
 <context:component-scan base-package="com.ys.service"/>
 <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/" p:suffix=".jsp"/>
   <!--p:prefix 表示前缀补全/WEB-INF/jsp p:suffix 表示后缀补全.jsp -->
</beans>

之后对spring-mvc.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:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" 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 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
    <!-- 扫描指定的包中的类上的注解,以完成Bean创建和自动依赖注入的功能 -->
    <context:component-scan base-package="com.ys.web" />
    <!-- 默认的注解映射的支持 -->
    <mvc:annotation-driven />
    <!-- 视图解释类 -->
    <bean  class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
        <!--可为空,方便实现自已的依据扩展名来选择视图解释类的逻辑,如果使用jstl的话,配置下面的属性--> 
            <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
     </bean> 
</beans> 

通过以上的配置,我们的一个spring mvc的框架就算初步完成了。

你可能感兴趣的:(spring,mvc,web开发)