ssh2的搭建步骤

来源:互联网 发布:看gv的软件 编辑:程序博客网 时间:2024/04/29 19:08
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 
xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<!--初始化spring  -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
   <!-- 加载spring配置文件 -->
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath*:**/spring-*.xml</param-value>
  </context-param>
  
  
  
  <!--struts2的核心控制器  -->
       <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
 </filter>
 <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
 </filter-mapping>
<!--  

   <filter> 
   <filter-name>struts2 </filter-name>
   <filter-class>
         com.cvicse.cmstest.util.JLTFilterDispatcher
   </filter-class>
</filter> -->

<!--hibernate的延迟加载  -->
 <filter>  
        <filter-name>OpenSessionInViewFilter</filter-name>  
   <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>  
   </filter>  
   <filter-mapping>  
        <filter-name>OpenSessionInViewFilter</filter-name>  
        <url-pattern>*.action</url-pattern>  
   </filter-mapping> 
   <welcome-file-list>
    <welcome-file>jsp/userlogin.jsp</welcome-file>
   </welcome-file-list>

<!--解决乱码问题  -->
  <!--  <filter>
 <filter-name>CharacterEncoding</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  -->
  <filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class>com.cvicse.cmstest.util.DoFilter</filter-class>
    <init-param>
    <param-name>encode</param-name>
    <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
    <param-name>enable</param-name>
    <param-value>TRUE</param-value>
    </init-param>
  </filter>





  <welcome-file-list>
    <welcome-file>/jsp/userlogin.jsp</welcome-file>
  </welcome-file-list>
</web-app>
因为想批量加载struts2的配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" 
"F:\Tomcat 6.0\webapps\CMST\struts2.dtd">
<struts>
<include file="struts-deprtment.xml" />
<include file="struts-staff.xml" />
<include file="struts-addmanystaff.xml"/>
<include file="struts-project.xml"/>
<constant value="UTF-8" name="struts.i18n.encoding"/>


</struts>


spring-datadasoure的配置文件:
<?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:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:lang="http://www.springframework.org/schema/lang"
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.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">


<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName"
value="com.mysql.jdbc.Driver">
</property>
<property name="url"
value="jdbc:mysql://localhost:3306/cmstest?useUnicode=true&amp;characterEncoding=UTF-8">
</property>
<property name="username" value="root"></property>


<property name="password" value="sun"></property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingLocations">
<list>
<value>classpath*:com/cvicse/cmstest/po/*.hbm.xml</value>
</list>
</property>
</bean>



<!-- 配置事务处理 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
 <!--设置service层 事务处理的方法 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="*" read-only="true" />
</tx:attributes>
</tx:advice>
<aop:config>
<aop:pointcut id="allServiceMethods"
expression="execution(*  com.cvicse.cmstest.*.service.*.*(..))" />
<aop:advisor advice-ref="txAdvice"
pointcut-ref="allServiceMethods" />
</aop:config>


</beans>