zoukankan      html  css  js  c++  java
  • java SSH整合配置

    web.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" 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"
        metadata-complete="true">
        <display-name>site</display-name>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
        
        <!-- 用户在线session监听器 -->
        <listener>
            <listener-class>com.rubekid.listener.OnlineListener</listener-class>
        </listener>
        
        <!-- 告知spring context config location 的存储位置 -->
        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/classes/applicationContext.xml</param-value>
        </context-param>
    
            <!-- 创建spring工厂监听器 -->
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
    
        <!-- Hibernate Open Session In View filter -->
        <filter>
            <filter-name>osivFilter</filter-name>
            <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>osivFilter</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    
        <!-- 自定义域名跳转过滤器 -->
        <filter>
            <filter-name>UrlRewriteFilter</filter-name>
            <filter-class>com.rubekid.filter.RewriteFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>UrlRewriteFilter</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    
        <!-- struts2拦截器 -->
        <filter>
            <filter-name>struts2</filter-name>
            <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>struts2</filter-name>
            <url-pattern>/*</url-pattern>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
    
        <servlet>
            <servlet-name>JspSupportServlet</servlet-name>
            <servlet-class>org.apache.struts2.views.JspSupportServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
    
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    
        <session-config>
            <session-timeout>120</session-timeout>
        </session-config>
    
        <error-page>
            <error-code>404</error-code>
            <location>/errorpage/404.jsp</location>
        </error-page>
        <jsp-config>
            <taglib>
                <taglib-uri>custom-tags</taglib-uri>
                <taglib-location>/WEB-INF/tld/customize-tags.tld</taglib-location>
            </taglib>
        </jsp-config>
        
        <distributable/>
    </web-app>

    applicationContext.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:jaxws="http://cxf.apache.org/jaxws"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
        xmlns:task="http://www.springframework.org/schema/task"
        xsi:schemaLocation="http://www.springframework.org/schema/beans  
                    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
                    http://www.springframework.org/schema/tx 
                    http://www.springframework.org/schema/tx/spring-tx-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/context 
                    http://www.springframework.org/schema/context/spring-context-3.0.xsd
                    http://www.springframework.org/schema/task
                    http://www.springframework.org/schema/task/spring-task-3.0.xsd
                    http://cxf.apache.org/jaxws 
                       http://cxf.apache.org/schemas/jaxws.xsd">
    
        <bean id="SpringContextUtil " class="org.springside.modules.utils.SpringContextUtil" scope="singleton" lazy-init="false" />
        
        <task:annotation-driven scheduler="qbScheduler" mode="proxy"/>  
        <task:scheduler id="qbScheduler" pool-size="10"/>
        
        <!-- 使用annotation 自动注册bean,并检查@Required,@Autowired的属性已被注入 -->
        <context:component-scan base-package="com.rubekid" />
        
        <!-- 数据库连接 -->
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
            <property name="driverClassName"><value>com.mysql.jdbc.Driver</value></property>
    
            <property name="url"><value>jdbc:mysql://127.0.0.1:3306/site?characterEncoding=utf-8&amp;zeroDateTimeBehavior=convertToNull</value></property>
    
            <property name="username"><value>postfix</value></property>
            <property name="password"><value>postfix</value></property>
            <property name="validationQuery" value="select id from link_detect"/>
        </bean>
    
    
        <!--Hibernate的Spring配置 -->
        <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
            <!-- 数据库连接 -->
            <property name="dataSource">
                <ref local="dataSource" />
            </property>
            
            <!-- hibernate自身属性 -->
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                </props>
            </property>
            
            <property name="packagesToScan" value="com.rubekid.entity"/>
        </bean>
    
        <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
        <!-- 使用annotation定义事务 -->
        <tx:annotation-driven transaction-manager="transactionManager" />
        
        <import resource="batch.xml" />
    
    </beans> 

    struts.xml

    <?xml version="1.0" encoding="UTF-8" ?> 
    <!DOCTYPE struts PUBLIC 
        "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" 
        "http://struts.apache.org/dtds/struts-2.3.dtd"> 
     
    <struts>
        <!-- 公共部分的配置 各个模块的配置请再单独创建一个文件来配置 -->
        <package name="default" namespace="/" extends="struts-default">
            <!-- 下面定义的结果对所有的Action都有效 -->
            <global-results>
                <result name="exception">/errorpage/exception.jsp</result>
            </global-results>
        </package>
        <include file="site.xml" />
    </struts>
  • 相关阅读:
    Linux-Rsync文件同步
    Linux-PPTP服务器搭建
    Excle破解忘记保护密码的方法。
    Linux-多维度服务器调优
    postman测试钉钉审批接口
    linux 常用服务器部署
    DRF
    15.ES6模块
    14.class类
    13. async用法
  • 原文地址:https://www.cnblogs.com/rubekid/p/4666854.html
Copyright © 2011-2022 走看看