Wildfly 8.2.1突然死亡

时间:2017-01-27 14:06:40

标签: angularjs spring postgresql hibernate wildfly-8

我遇到了WIldfly 8.2.1的问题。我正在开发一个使用Spring 4,Hibernate 4和AngularJS 1.4.8的应用程序,使用环境Windows 10,使用standalone.bat从控制台运行服务器。

我遇到的问题是,当我在Wildfly 10中发布这个应用程序时,它工作得很好,但是当我在Wildfly 8.2.1中发布它时(我想在部署完应用程序后将其部署到服务器的版本) ),一旦我尝试访问应用程序的任何页面,服务器突然死亡。

我的意思是die,当我尝试从端口9991中的管理控制台删除应用程序时(我已经设置了该端口)它什么也没做,当我输入ctrl + c从控制台关闭widlfly ,它首先告诉我:

11:45:13,714 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) JBA
S017535: Unregistered web context: /SGA
11:45:13,715 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1
-7) JBAS010418: Stopped Driver service with driver-name = SGA.war_org.postgresql
.Driver_9_4
11:45:21,238 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service
thread 1-6) JBAS010409: Unbound data source [java:jboss/dinaliTest]
11:45:21,247 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1
-8) JBAS010418: Stopped Driver service with driver-name = postgres

有人知道为什么会这样吗?如果只是野蝇不能承受来自angularJS前端的负载或postgres驱动程序的问题?我正在使用applicationContext.xml中定义的数据源连接,如下所示:

<bean id="dataSourceTest" class="org.apache.commons.dbcp.BasicDataSource">
            <property name="driverClassName" value="org.postgresql.Driver" />
            <property name="url" value="jdbc:postgresql://localhost:5433/Administracion" />
            <property name="username" value="*" />
            <property name="password" value="*" />
        </bean>

使用

<dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.4.1212.jre7</version>
        </dependency>

0 个答案:

没有答案