springMVC配置文件

--------------------------------------------------------------------------

web.xml

<!--springMVC基于DispatcherServlet的配置-->

<servlet>
<servlet-name>
springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>
contextConfigLocation</param-name>

<!--classpath:表示scr下,也就是/WEB-INF/classes/-->

<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<load-on-startup>
1</load-on-startup>
</servlet>

<!--springMVC映射-->
<servlet-mapping>
<servlet-name>
springmvc</servlet-name>
<url-pattern>
/</url-pattern>
</servlet-mapping>

<!--spring监听器-->

<listener>  
<description>spring listerner</description>  
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
</listener>

<!-- spring上下文配置文件 -->  
<context-param>  
    <description>spring config</description>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>/WEB-INF/applicationContext.xml</param-value>  
</context-param>

<!-- 配置过滤器,同时把所有的请求都转为utf-8编码 -->  
<filter>  
<filter-name>Spring character encoding filter</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>  
<filter-mapping>  
<filter-name>Spring character encoding filter</filter-name>  
<url-pattern>/*</url-pattern>  
</filter-mapping>
<!--     配置找不到页面时返回的页面 -->  
<error-page>   
      <error-code>404</error-code>   
      <location>/error/404.html</location>   
</error-page>   
    
<!--   配置项目主页 -->
<session-config>  
    <session-timeout>30</session-timeout>  
</session-config>  
<welcome-file-list>  
    <welcome-file>login.jsp</welcome-file>  
</welcome-file-list> 

--------------------------------------------------------------------------

springmvc-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:context="http://www.springframework.org/schema/context"

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

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

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-4.2.xsd

http://www.springframework.org/schema/context 

http://www.springframework.org/schema/context/spring-context-4.2.xsd 

http://www.springframework.org/schema/mvc 

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

http://www.springframework.org/schema/aop 

http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
</beans>

--------------------------------------------------------------------------

<!-- 扫描包以完成Bean创建和自动依赖注入的功能 -->
<context:component-scan base-package="test.SpringMVC"/>

<!-- 不处理静态资源 -->
<mvc:default-servlet-handler />
<!-- 启动注释 -->
<mvc:annotation-driven />
<!-- 配置视图管理器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">

<!---->

<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"></property>

<!-- 前缀 -->
<property name="prefix" value="/WEB-INF/jsp/" />
<!-- 后缀 -->

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

</bean>

<!-- 上传文件时需要用到的分解器,默认将编码转为utf-8 -->  
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    
<property name="defaultEncoding">  
<value>UTF-8</value>  
</property>  
</bean>

--------------------------------------------------------------------------

applicationContext-spring.xml

<!-- 配置扫瞄注解service,controller -->  
<context:annotation-config/>

<context:component-scan base-package="扫瞄的包名" scoped-proxy="targetClass">  
<!--<context:exclude-filter type="annotation" expression="cn.bonoon.controllers.*"/>-->  
</context:component-scan>

<!-- 使用annotation定义事务 -->
<tx:annotation-driven transaction-manager="transactionManager"/>

<!-- 配置数据库连接 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">  
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>  
<property name="url" value="jdbc:mysql://localhost:3306/数据库名?useUnicode=true&characterEncoding=utf8"/> 
<property name="username" value="root"/>  
<property name="password" value=""/>  
</bean>

<!-- 配置hibernate相关信息 -->  
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">  
<property name="dataSource" ref="dataSource"/>  
<property name="hibernateProperties">  
<props>  
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>  
<prop key="hibernate.show_sql">true</prop>  
<prop key="hibernate.hbm2ddl.auto">update</prop>  
</props>  
</property>  
<!-- 以下列表写入实体类 -->  
<property name="annotatedClasses">  
<list>中间写入hibernate注解的实体</list>  
</property>  
</bean>  
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
<property name="sessionFactory" ref="sessionFactory"/>  

</bean>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值