springmvc4.3.13+hibernate5.2.0

springMvc4.3.13+Hiberante5.2.0

1. 下载jar包

spring:

https://repo.spring.io/release/org/springframework/spring/

hibernate:

http://hibernate.org/orm/releases/5.2/
C3P0数据源jar包在hibernate的jar包文件夹内

日志commons-logging:

http://mvnrepository.com/artifact/commons-logging/commons-logging/1.2

切面编程包aspectjweaver:

http://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.8.10

mysql数据库驱动包:

http://mvnrepository.com/artifact/mysql/mysql-connector-java/5.1.45

2. 配置文件
1.applicationContext-dao.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    <!-- 加载properties配置文件 -->
    <context:property-placeholder location="classpath:resource/jdbc.properties" />

    <!-- 配置c3p0数据源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
        destroy-method="close">
        <property name="driverClass" value="${jdbc.driver}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="user" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <!--每5小时检查所有连接池中的空闲连接。防止mysql wait_timeout(默认的为8小时) -->
        <property name="idleConnectionTestPeriod" value="${jdbc.c3p0.idleConnectionTestPeriod}" />
    </bean>

    <!-- 配置hibernate -->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="packagesToScan">
            <list>
                <value>com.po</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
                <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
                <prop key="hibernate.temp.use_jdbc_metadata_defaults">false</prop>
            </props>
        </property>

    </bean>
    <bean
        class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
    <context:component-scan base-package="com"></context:component-scan>
</beans>
2.applicationContext-transaction.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: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.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">

    <bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">  
        <property name="sessionFactory" ref="sessionFactory" />  
    </bean> 

      <!-- 通知 -->  
    <tx:advice id="txAdvice" transaction-manager="transactionManager">  
        <tx:attributes>  
            <!-- 传播行为 -->  
            <tx:method name="save*" propagation="REQUIRED"/>  
            <tx:method name="delete*" propagation="REQUIRED"/>  
            <tx:method name="insert*" propagation="REQUIRED"/>  
            <tx:method name="update*" propagation="REQUIRED"/>  
            <tx:method name="list*" propagation="SUPPORTS" read-only="true"/>  
            <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>  
        </tx:attributes>  
    </tx:advice>  

        <!-- aop -->  
    <aop:config>  
        <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.service.*.*(..))"/>
    </aop:config>  

        <!-- 注解管理事务 -->  
    <tx:annotation-driven transaction-manager="transactionManager"/> 
</beans>
3.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: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.xsd  
    http://www.springframework.org/schema/context  
    http://www.springframework.org/schema/context/spring-context-3.2.xsd  
    http://www.springframework.org/schema/mvc  
    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"
    default-autowire="byName">

    <!-- 开启注解,java文件里的@ -->
    <!-- <mvc:annotation-driven /> -->
    <mvc:annotation-driven>  
        <mvc:message-converters>  
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">  
                <property name="supportedMediaTypes" value="text/html;charset=utf-8"></property>  
            </bean>  
        </mvc:message-converters>  
    </mvc:annotation-driven>  

    <!-- 注解扫描包,注意换成自己的路径 -->
    <context:component-scan base-package="com.controller">
        <!-- 只扫描@Controller的部分 -->
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!--完成请求和注解POJO的映射 -->
    <bean
        class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />

    <!-- 静态资源(js/image)的访问 ,可添加多个-->
    <mvc:resources location="/js/" mapping="/js/**" />

    <!-- 定义视图解析器 -->
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>  
4.jdbc.properties
host=192.168.47.128
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://192.168.47.128:3306/apple
jdbc.username=root
jdbc.password=root

#-----------------------------------------------------  
# \u9002\u7528\u4E8Ec3p0\u7684\u914D\u7F6E  
#-----------------------------------------------------  
#-----------------------------------------------------  
# c3p0\u53CD\u7A7A\u95F2\u8BBE\u7F6E\uFF0C\u9632\u6B628\u5C0F\u65F6\u8FDE\u63A5\u5931\u6548\u95EE\u989828800  
#-----------------------------------------------------  
#idleConnectionTestPeriod\u8981\u5C0F\u4E8EMySQL\u7684wait_timeout \u9ED8\u8BA4\u4E3A8\u5C0F\u65F6  
jdbc.c3p0.testConnectionOnCheckout=false  
jdbc.c3p0.testConnectionOnCheckin=true  
jdbc.c3p0.idleConnectionTestPeriod=18000  
#-----------------------------------------------------  
# c3p0\u8FDE\u63A5\u6C60\u914D\u7F6E  
#-----------------------------------------------------  
#initialPoolSize, minPoolSize, maxPoolSize define the number of Connections that will be pooled.  
#Please ensure that minPoolSize <= maxPoolSize.  
#Unreasonable values of initialPoolSize will be ignored, and minPoolSize will be used instead.  
jdbc.c3p0.initialPoolSize=10  
jdbc.c3p0.minPoolSize=10  
jdbc.c3p0.maxPoolSize=100  
#maxIdleTime defines how many seconds a Connection should be permitted to go unused before being culled from the pool.  
jdbc.c3p0.maxIdleTime=3600  
#-----------------------------------------------------  
# hibernate\u914D\u7F6E  
#-----------------------------------------------------  
#\u65B9\u8A00\u7C7B\u578B  
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
hibernate.show_sql=true
hibernate.format_sql=true
#\u81EA\u52A8\u5EFA\u8868\u529F\u80FD  
hibernate.hbm2ddl.auto=update
5. web.xml
<?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">
    <display-name>Spring-MVC-model</display-name>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <!-- 加载所有的配置文件 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath*:resource/*.xml</param-value>
    </context-param>
    <!-- 配置Spring监听 -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 配置SpringMVC -->
    <servlet>
        <servlet-name>springMVC</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath*:resource/spring-mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springMVC</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <!-- 配置字符集 -->
    <filter>
        <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>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <!-- 配置Session -->
    <filter>
        <filter-name>openSession</filter-name>
        <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>openSession</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>
3. jquery

引入jquery包

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值