【发布时间】:2015-01-14 20:07:34
【问题描述】:
我继承了一个运行 JBoss 7.x 服务器、java 后端等的单个实例的项目。我对 JBoss 完全陌生,我对文件结构的配置感到好奇),我拥有拥有什么以及在哪里。 documentation 的结构与我收到的不同,我不确定如何设置一个全新的 Web 应用程序服务器项目(即从头开始一个项目)。
例如,为什么我有多个standalone.xml 文件?即,
standalone.xml
standalone-ha.xml
standalone-full-ha.xml
standalone-full.xml
基本上,我正在寻找“您需要这些才能让您的应用运行”之类的指南。
我的 JBoss 文件夹有这个结构
|--appclient
| |--configuration
| | `--appclient.xml
| | `-- logging.properties
|
|--bin
| |--client
| | `-- jboss-client.jar
| |--init.d
| | `-- jboss-as.conf
| | `-- jboss-as-standalone.sh
| `--(a lot of .bat and .conf files)
|
|--bundles
| |--javax
| | |--servlet
| | |--api
| | |--v25
| | `--jbosgi-http-api-1.0.5.jar
| |--org
| |--apache
| |--jboss
| |--osgi
| |--projectodd
|
|--docs
| |--examples
| |--schema
|
|--domain
| |--configuration
| | `--domain.xml
| | `--host.xml
| | `--host-master.xml
| | `--host-slave.xml
| |--data
| | |--content
| | `--(empty)
| |--tmp
| | |--auth
| | `--(empty)
|
|--modules
| |--asm
| | |--main
| | |--asm
| | `--asm-3.3.1.jar
| | `--module.xml
| |--ch
| |--com
| |--gnu
| |--javaee
| |--javax
| |--jline
| |--net
| |--nu
| |--org
| |--sun
|
|--standalone
| |--configuration
| | `--(I know the standalone.xml files go here)
| |--data
| |--deployments
| | `-- (I know the .war files go here)
| |--lib
| |--log
| | `-- (what ever could this be?? *sarcasm)
| |--tmp
|
|--welcome-content
*显然我累了,没有在每个文件夹中标记所有内容
【问题讨论】: