關於jboss下部署webservice而出現資料庫down掉的問題
各位jdon的技術朋友,我有個技術上的問題向大家虛心請教,我遇到的問題是這樣的:
我們在單位裡寫了一個類似提供給第三方提交簡訊資料的介面.介面形式是webservice,採用的技術框架是spring+hibernate+axis.
web.xml的配置檔案如下
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<display-name>sms</display-name>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.properties</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<!--
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext_hibernate.xml /WEB-INF/applicationContext_service.xml</param-value>
</context-param>
-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>SpringLog4jConfigServlet</servlet-name>
<servlet-class>org.springframework.web.util.Log4jConfigServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>AxisServlet</servlet-name>
<servlet-class>
org.apache.axis.transport.http.AxisServlet
</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>default.html</welcome-file>
</welcome-file-list>
</web-app>
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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
<!--
<value>WEB-INF/mail.properties</value>
<value>WEB-INF/jdbc.properties</value>
-->
</list>
</property>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref local="dataSource" />
</property>
<property name="mappingResources">
<list>
<value>cn/gaoxt/model/map/JC_SCHOOL.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_RECEIVER.hbm.xml</value>
<value>cn/gaoxt/model/map/YHSJ_SYSADMINUSER.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_SENDSM.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_SENDCHECK.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_REVSM.hbm.xml</value>
<value>cn/gaoxt/model/map/YHSJ_STUDENT.hbm.xml</value>
</list>
</property>
<!--
<property name="mappingDirectoryLocations">
<list>
<value>WEB-INF/classes/cn/gaoxt/model/map</value>
<value>classpath:/my/package/</value>
</list>
</property>
-->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<bean id="txProxyTemplate" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager">
<ref bean="transactionManager" />
</property>
<property name="transactionAttributes">
<props>
<prop key="t_*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="gaoxtsmsinterfaceforschooldao" class="cn.gaoxt.dao.GaoxtSMSInterfaceForSchoolDAOHibernate">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="gaoxtsmsinterfaceforshcool" class="cn.gaoxt.service.GaoxtSMSInterfaceForSchoolImpl">
<property name="gaoxtsmsinterfaceforschooldao" ref="gaoxtsmsinterfaceforschooldao"/>
</bean>
</beans>
現在的問題是,該介面被使用者介面後,大約過3-4左右.我們資料庫(oracle)就down掉.導致連線異常失敗.請問大家能不能幫我看一下這個問題,幫我想想主要是什麼原因造成的.鄙人非常感激.如果有好的最佳化意見,可以聯絡我,我的qq:271761293,
我們在單位裡寫了一個類似提供給第三方提交簡訊資料的介面.介面形式是webservice,採用的技術框架是spring+hibernate+axis.
web.xml的配置檔案如下
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<display-name>sms</display-name>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.properties</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<!--
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext_hibernate.xml /WEB-INF/applicationContext_service.xml</param-value>
</context-param>
-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>SpringLog4jConfigServlet</servlet-name>
<servlet-class>org.springframework.web.util.Log4jConfigServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>AxisServlet</servlet-name>
<servlet-class>
org.apache.axis.transport.http.AxisServlet
</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>default.html</welcome-file>
</welcome-file-list>
</web-app>
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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
<!--
<value>WEB-INF/mail.properties</value>
<value>WEB-INF/jdbc.properties</value>
-->
</list>
</property>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref local="dataSource" />
</property>
<property name="mappingResources">
<list>
<value>cn/gaoxt/model/map/JC_SCHOOL.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_RECEIVER.hbm.xml</value>
<value>cn/gaoxt/model/map/YHSJ_SYSADMINUSER.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_SENDSM.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_SENDCHECK.hbm.xml</value>
<value>cn/gaoxt/model/map/SMS_REVSM.hbm.xml</value>
<value>cn/gaoxt/model/map/YHSJ_STUDENT.hbm.xml</value>
</list>
</property>
<!--
<property name="mappingDirectoryLocations">
<list>
<value>WEB-INF/classes/cn/gaoxt/model/map</value>
<value>classpath:/my/package/</value>
</list>
</property>
-->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<bean id="txProxyTemplate" abstract="true" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager">
<ref bean="transactionManager" />
</property>
<property name="transactionAttributes">
<props>
<prop key="t_*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="gaoxtsmsinterfaceforschooldao" class="cn.gaoxt.dao.GaoxtSMSInterfaceForSchoolDAOHibernate">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="gaoxtsmsinterfaceforshcool" class="cn.gaoxt.service.GaoxtSMSInterfaceForSchoolImpl">
<property name="gaoxtsmsinterfaceforschooldao" ref="gaoxtsmsinterfaceforschooldao"/>
</bean>
</beans>
現在的問題是,該介面被使用者介面後,大約過3-4左右.我們資料庫(oracle)就down掉.導致連線異常失敗.請問大家能不能幫我看一下這個問題,幫我想想主要是什麼原因造成的.鄙人非常感激.如果有好的最佳化意見,可以聯絡我,我的qq:271761293,
相關文章
- JBoss和WebService的問題Web
- jboss訪問資料庫的問題資料庫
- 關於jboss-3.0.8_tomcat-4.1.24開發webservice得問題TomcatWeb
- JBoss下配置資料來源問題
- 請問,關於資料庫連線的問題。資料庫
- jBoss下資料庫表名大小寫被自動更改的問題資料庫
- 關於資料庫和jdbc的問題,指教資料庫JDBC
- 關於資料庫緩衝池的問題資料庫
- 在JBoss裡部署testWeb出現了問題Web
- 關於JPetstore連線資料庫問題資料庫
- jboss 下 部署 多個應用程式的資源問題,急,謝謝!!
- 關於oracle資料庫訊號量的問題Oracle資料庫
- 請教關於資料庫連線的問題資料庫
- 關於資料庫死鎖問題的解釋資料庫
- 關於安裝jboss+tomcat的問題Tomcat
- 關於資料共享的問題
- 關於資料庫連線的一些小問題資料庫
- 關於hibernate+informix資料庫的問題,急ORM資料庫
- 關於tomcat資料庫連線池的問題Tomcat資料庫
- 關於一個資料庫列設計的問題資料庫
- 關於下拉選單查詢資料庫的問題資料庫
- 在jboss上部署應用的問題。
- jboss下mysql的中文問題MySql
- jboss中資料庫連線出問題資料庫
- 關於讀取資料庫配置資原始檔問題資料庫
- 資料庫關聯問題資料庫
- 關於android stdio連線mysql資料庫出現過的問題AndroidMySql資料庫
- 關於 SAP HANA 資料庫的死鎖問題(deadlock)資料庫
- 關於用JB7連線資料庫的問題。資料庫
- 關於資料庫表記錄主鍵生成的問題?資料庫
- 求教:關於Eclipse+lomboz3.0+jboss3.2.5的問題EclipseS3
- 資料庫每隔一段時間自動down掉的錯誤解決資料庫
- 賜教:關於JBoss伺服器無法釋放資源的問題伺服器
- 關於資料庫間連結問題彙總---Oracle資料庫Oracle
- 基於mysql資料庫 關於sql優化的一些問題MySql資料庫優化
- 掉電無法啟動資料庫問題解決資料庫
- 資料庫事物相關問題資料庫
- 一個關於資料庫閃回區問題的處理資料庫