求助,关于Spring声明式事物和Log4j同时配置问题
求助,关于Spring声明式事物和log4j同时配置问题,该怎么样配置呀,请看我的源代码ApplicationContext.xml的配置,我就不知道怎么配置日志。。。。而且我也写了个日志通知,但就是不知道怎么配置。。。。。
<!-- 数据库配置 -->
<bean id="dateSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName">
<value>com.microsoft.sqlserver.jdbc.SQLServerDriver</value>
</property>
<property name="url">
<value>jdbc:sqlserver://localhost:1433;datebaseName=test</value>
</property>
<property name="username">
<value>sa</value>
</property>
<property name="password">
<value>123</value>
</property>
</bean>
<!-- 配置SessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref local="dateSource"/>
</property>
<property name="mappingResources">
<list>
<value>com/accp/bank/orm/Account.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
</bean>
<!-- 事物管理器 -->
<bean id="hibernateTransactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<!-- 事物的控制 -->
<tx:advice id="txAdvice" transaction-manager="hibernateTransactionManager">
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="load*" read-only="true"/>
<tx:method name="list*" read-only="true"/>
<tx:method name="do*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!-- 自动代理 -->
<aop:config>
<!-- 切入点 -->
<aop:pointcut id="pointcut" expression="execution(* *..*Biz.*(..))"/>
<!-- 关联切入点和事物特性 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>
</aop:config>
<!-- 注入DAO -->
<bean id="accountDao" class="com.accp.bank.dao.impl.AccountDAOBizImp">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<!-- 注入service -->
<bean id="accountBiz" class="com.accp.bank.service.impl.AccountBizImpl">
<property name="accountDao">
<ref local="accountDao"/>
</property>
</bean>
<!-- 注入action -->
<bean name="accountAction" class="com.accp.bank.web.action.AccountAction">
<property name="accountBiz">
<ref local="accountBiz"/>
</property>
</bean>
</beans>
我该怎么配置日志呀。我该怎么配置日志呀。我该怎么配置日志呀。我该怎么配置日志呀。,我新手。。。。
------解决方案--------------------
给你参考一下:
<!-- log4j先于spring加载 所以配置放在spring监听之前 否则会有异常 --> <context-param> <param-name>webAppRootKey</param-name> <param-value>webApp.root</param-value> </context-param> <context-param> <param-name>log4jConfigLocation</param-name> <param-value>classpath:log4j.properties</param-value> </context-param> <context-param> <param-name>log4jRefreshInterval</param-name> <param-value>60000</param-value><!-- log4j定时刷新读取配置信息(毫秒) --> </context-param> <!-- log4j监听 需要添加spring-web.jar包,否则用发生错误信息 --> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener> <!-- spring配置 --> <context-param> <!-- 指定spring配置文件位置 --> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml,classpath:applicationContext*.xml</param-value> </context-param> <!-- spring上下文配置监听 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 针对spring scope支持request,session和global session作用域的监听配置 session:为每个访问用户单独创建一个bean实例,在关闭浏览器时,销毁实例。 request:每一次http请求,都会新创建一个该类型的bean实例,在完成一次请求后,销毁实例。 --> <listener> <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class> </listener> <!-- 这个监听,用于清理spring类加载、拦截器可能造成的内存泄漏 --> <listener> <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class> </listener> <display-name></display-name> <welcome-file-list> <welcome-file>/jsp/login.jsp</welcome-file> </welcome-file-list>