`

SSH+DB2搭建开发环境(上)

 
阅读更多

1.创建工程之后,倒入基本jar包和log4j.properties

(因网站对附件大小的限制,现将所需jar包分两部分上传。位置分别为http://zhizizhishou0104.iteye.com/blog/1993956http://zhizizhishou0104.iteye.com/blog/1993988 )

2.配置struts

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
	<constant name="struts.i18n.encoding" value="UTF-8"/>
	<constant name="struts.enable.DynamicMethodInvocation" value="false"/>
	<constant name="struts.configuration.xml.reload" value="true"/>
	<constant name="struts.devMode" value="true"/>
	<constant name="struts.i18n.reload" value="true"/>
	<constant name="struts.convention.classes.reload" value="true" />
	
	<package name="base-package" extends="struts-default">
		<interceptors>
			<interceptor name="loginInterceptor" class="com.abc.web.LoginInterceptor"/>
			<interceptor-stack name="myStack">
				<interceptor-ref name="loginInterceptor"/>
				<!-- 默认拦截器栈
				<interceptor-ref name="defaultStack"/>
				 -->
				<interceptor-ref name="basicStack"/> 
			</interceptor-stack>
		</interceptors>
		<default-interceptor-ref name="myStack"/>
		<global-results>
			<result name="login" type="redirect">/index.jsp</result>
		</global-results>
	</package>
</struts>

 3.配置spring

applicationContext.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" xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
			http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
			http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">

	<aop:aspectj-autoproxy />
	<context:component-scan base-package="com.abc.*" />
	
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="location" value="classpath:JDBC.properties" />
	</bean>
	
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName" value="${JDBC.DriverName}"/>
		<property name="url" value="${JDBC.URL}"/>
		<property name="username" value="${JDBC.User}"/>
		<property name="password" value="${JDBC.Password}"/>
	</bean>
	
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> 
		<property name="dataSource" ref="dataSource"/>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${ORM.Dialect}</prop>
				<prop key="hibernate.show_sql">${ORM.ShowSQL}</prop>
				<prop key="hibernate.hbm2ddl.auto">${ORM.HBM2DLL}</prop>
			</props>
		</property>
		<property name="packagesToScan">
			<list>
				<value>com/abc/domain</value>
			</list>
		</property>
	</bean>	
	
	<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"/>
	</bean>		
	
	<aop:config>
		<aop:pointcut expression="execution(* com.abc.service.*.*(..))" id="allServiceMethod"/>
		<aop:advisor advice-ref="txAdvice" pointcut-ref="allServiceMethod"/>
	</aop:config>
	
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="save*" propagation="REQUIRED" rollback-for="java.lang.Exception"/>
			<tx:method name="update*" propagation="REQUIRED"  rollback-for="java.lang.Exception"/>
			<tx:method name="delete*" propagation="REQUIRED"  rollback-for="java.lang.Exception"/>
			<tx:method name="*" propagation="REQUIRED" read-only="true"/>
		</tx:attributes>
	</tx:advice>	
</beans>

4.JDBC.properties

JDBC.DriverName=com.ibm.db2.jcc.DB2Driver
JDBC.URL=jdbc:db2://192.168.1.100:50000/ABC:traceLevel=3;driverType=4;currentSchema=AAA;
JDBC.User=user
JDBC.Password=password

ORM.Dialect=org.hibernate.dialect.DB2Dialect
ORM.ShowSQL=true
ORM.HBM2DLL=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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	id="WebApp_ID" version="2.5">
	<display-name>ssh_demo</display-name>

	<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>
	<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>*.action</url-pattern>
	</filter-mapping>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext.xml</param-value>
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>
</web-app>

 

分享到:
评论

相关推荐

    SSH+DB2搭建开发环境(下)

    在本篇中,我们将深入探讨如何使用SSH(Secure Shell)框架和IBM的DB2数据库来构建一个安全的开发环境。SSH框架是用于构建基于Java的分布式应用的流行选择,而DB2则是企业级的关系型数据库管理系统。让我们一起探索...

    Develop and Test Your PHP Applications on the IBM cloud

    在互联网技术日益成熟的今天,云计算服务已经成为开发和测试应用的重要...利用IBM云平台,PHP开发者不仅可以在项目初期快速搭建开发环境,还能在产品发布前进行全面的测试,确保最终交付给用户的软件是稳定和高效的。

    系统java学习

    - **开发环境搭建**:在Linux环境下搭建Java开发环境。 2. **Web编程基础** - **HTML、CSS+DIV、JavaScript**:学习网页前端的基础技术。 3. **JavaWeb编程技术** - **JSP、Servlet、JavaBean**:掌握JSP页面、...

    JavaEE.doc

    - **开发环境搭建**:学会在Linux环境下配置Java开发环境。 - **Web编程基础** - **HTML**:掌握HTML5的基本语法。 - **CSS+DIV**:学会使用CSS布局网页。 - **JavaScript**:掌握JavaScript基本语法,了解DOM...

    面试简历模板

    - 张三曾在(南京)江苏XXX软件公司担任高级软件工程师四年两个月,参与了系统的基础要求的环境搭建,技术调研,问题解决等工作。 - 在(南京)中软国际,他作为软件工程师参与了华为外包项目,主要负责Java Web...

    WEB工程师个人简历表.doc

    - SVN版本管理环境搭建。 - 图像平台项目实施,包括服务器批量安装、数据批量导入、MAX矩阵及干线配置。 - 数值分析与算法研究。 3. **2007.7-2009.6 在某软件有限公司担任项目经理** - **主要职责**: - 负责...

Global site tag (gtag.js) - Google Analytics