
JBoss
iteye_9496
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
JBoss 7.1 - Datasource Configuration and App Deployment
JBoss 7.1.1.Final has been released in 3月份 2012. Lets take a look at its directories, how to deploy and how to configure data source. 1. [b]Directory Layout:[/b] JBoss 7 is fundamentally different ...2012-08-20 12:37:30 · 120 阅读 · 0 评论 -
Logging Configuration in JBoss 7.1
JBoss 7.1 has the log4j module built in. When developing, the project can just include the logging API lib (like log4j) in the project classpath, so that the project compiles. When build, the log4j.ja...2012-08-22 09:22:31 · 115 阅读 · 0 评论 -
start/stop JBoss 7
1. start JBoss7 in background and bind ip address: -b 10.1.1.9 standalone.sh -b 10.1.1.9 & 2. stop JBoss7 with the CLI jboss-cli.sh --connect --command=:shutdown Note: connect d...2012-09-06 17:56:05 · 120 阅读 · 0 评论 -
When to configure an XA datasource?
If you ever came across this warning message from JBoss, you might wonder what's wrong: [b]WARN [TxConnectionManager] Prepare called on a local tx. Use of local transactions on a jta transaction wi...2012-11-16 12:58:33 · 190 阅读 · 0 评论 -
Simple tool to monitor jvm memory usage and garbage collection
JDK has built-in tool to monitor jvm memory usage: jstat This is a command line tool, which runs like: $ jstat -gc 17707 5000where, -gc is the option, 17707 is process ID of the jvm process, 5000 ...原创 2016-10-13 06:06:12 · 199 阅读 · 0 评论