使用注解整合的ssh的配置文件怎么配置?

导读:本篇文章讲解 使用注解整合的ssh的配置文件怎么配置?,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

首先,在生成的实体类中,将所有的manytoone的fetch改为 @ManyToOne(fetch = FetchType.EAGER) EAGER
然后在你的业务类前都加上

@Service("Service的名字,个人习惯类名")//替换<bean id="Service的名字">
@Transactional//用于事务控制

在你的动作类或控制类前(一般起名com.action/com.controller)加上:

@Controller//控制层
@ParentPackage("struts-default")替换struts.xml中的extend
@Namespace("/")//替换struts.xml中的Namespace
@Result(name="fail",location="fail.jsp",type="redirect")//全局变量

在动作类的执行方法前配置好其相关路径,例如:

@Action(value="findAll_Dep",results={
			@Result(name="ok",type="redirect",location="${path}")
	})//value值描述访问DepAction的findAll方法,其余方法一次类推

1.applicationContext.xml配置文件代码(代码基本附带注释):

<?xml version="1.0" encoding="UTF-8"?>
<beans
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="
	http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans-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/aop
	http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
	http://www.springframework.org/schema/tx 
	http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
	"
	default-autowire="byName"
	>
	<!-- 注解配置的支持 -->
	<context:annotation-config></context:annotation-config>
	<!-- z注入扫描包.扫描加入注解配置的类,将其注入到spring容器 -->
	<context:component-scan base-package="com.dao"></context:component-scan>
	<context:component-scan base-package="com.biz"></context:component-scan>
	<context:component-scan base-package="com.service"></context:component-scan>
	<context:component-scan base-package="com.action"></context:component-scan>
	<!-- 标准的数据库链接 
	<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/empdb">
		</property>
		<property name="username" value="root"></property>
		<property name="password" value="java"></property>
	</bean>
	-->	
	<!-- 使用c3p0数据库连接池,优化数据库的访问效率 加快访问效率以及连接数据库的效率-->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
		<property name="driverClass" value="com.mysql.jdbc.Driver"/>
		<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/empdb"/>
		<property name="user" value="root"/>
		<property name="password" value="java"/>
		<!--初始化时获取的连接数,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->
		<property name="initialPoolSize" value="1"/>
		<!--连接池中保留的最小连接数。-->
		<property name="minPoolSize" value="1"/>	
		<!--连接池中保留的最大连接数。Default: 15 -->
		<property name="maxPoolSize" value="300"/>
		<!--最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
		<property name="maxIdleTime" value="60"/>	
		<!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
		<property name="acquireIncrement" value="5"/>	
		<!--每60秒检查所有连接池中的空闲连接。Default: 0 -->
		<property name="idleConnectionTestPeriod" value="60"/>
	</bean>
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
		<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>
				<!--可以通过实体类反向生成表,前提要连接数据库存在,表不存在  -->
				<prop key="hibernate.hbm2ddl.auto">
					update
				</prop>
				<!-- 是否格式化sql语句 -->
				<prop key="hibernate.format_sql">
					false
				</prop>
			</props>
		</property>
		<property name="annotatedClasses">
			<list>
				<value>com.po.Dep</value>
				<value>com.po.Users</value>
				<value>com.po.Welfare</value>
				<value>com.po.Empwelfare</value>
				<value>com.po.Salary</value>
				<value>com.po.Emp</value>
			</list>
		</property>
	</bean>
	<!-- 注入hibernate的事务管理器 -->
	<bean id="txmanager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	<!-- yin入注解通知 -->
	<tx:annotation-driven transaction-manager="txmanager"/>
</beans>

2.struts.xml配置文件中的代码:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
	<constant name="struts.ui.theme" value="simple"></constant>
</struts>    

3.web.xml配置文件中的代码:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	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_2_5.xsd">
  <display-name></display-name>	
  <!-- ******************spring容器的启动配置,替代ApplicationContext对象的创建************* -->
 <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>
 <!-- ***********************spring配置结束************************** -->
 <!-- ************************配置Hiberante的session已关闭异常的过滤处理******************** -->
 <filter>
 	<!-- 此filter解决因为hibernate的session关闭导致的延时加载例外问题(也就是从数据库没有查出来数据) -->
  <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>/*</url-pattern>
 </filter-mapping>
  <welcome-file-list>
    <welcome-file>login.jsp</welcome-file>
  </welcome-file-list>
  <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>
  </filter-mapping>
 </web-app>

4.最后,一般我们会在src目录下新建一个log4j.properties的日志文件,内容如下(此文件可帮助我们在控制台打印错误信息):
日志文件可以帮我们查看错误,如果没有日志文件,出错了我们也看不见哦!

log4j.properties日志文件:
#All level less than INFO will be logged
log4j.rootLogger=info, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss}  %m%n

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/96891.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!