Byteman 阻止 Wildfly 8.1.0 启动?

Byteman preventing Wildfly 8.1.0 from starting?

当我的 wildfly 8.1.0 服务器启动时,它应该创建一个 class.

的实例

我不确定是否会发生这种情况,而且我无法更改源代码,所以我想我会使用 Byteman 来完成它。

我为 Byteman 编写了这个规则文件,存储在 C:\app\ECLSManagedConnectionFactory.btm:

RULE trace ECLSManagedConnectionFactory init entry
CLASS com.empolis.ecls.server.j2ee.jca.impl.ECLSManagedConnectionFactory
METHOD <init>
AT ENTRY
IF true
DO traceOpen("ECLSManagedConnectionFactory", "/app/ECLSManagedConnectionFactory.log");
   traceln("entering <init>");
   traceClose("ECLSManagedConnectionFactory");
ENDRULE

我下载了 Byteman 并解压到 C:\byteman-3.0.3

我修改了我的 java_opts 并让 wildfly 在启动期间回显该值:

-Xms64m -Xmx512m -XX:MaxPermSize=256m
-Dorg.jboss.byteman.transform.all
-javaagent:C:/byteman-3.0.3/lib/byteman.jar=script:C:/app/ECLSManagedConnectionFactory.btm,boot:C:/byteman-3.0.3/lib/byteman.jar:listener:true
-Dsun.rmi.dgc.client.gcInterval=3600000
-Dsun.rmi.dgc.server.gcInterval=3600000
-Djava.net.preferIPv4Stack=true
-Dorg.jboss.resolver.warning=true
-Djboss.modules.system.pkgs=org.jboss.byteman
-Djboss.server.default.config=cls.xml

如果上面 java_opts 的第 2 行和第 3 行不存在,我的服务器会成功启动,但是当我添加这些时,服务器根本不会启动。没有任何迹象表明正在发生的事情会转到 stdout 或 stderr。我收到一条消息,要求检查 server.log 以获取更多信息,但该文件不存在。

我做错了什么?我已经尝试了路径的所有斜杠方向组合(如果这很重要,在 Windows 10 上)。

有人真正使用这个 byteman 工具吗?我很惊讶它在 Stack Overflow 上没有标签,而且网上的信息太少了。

问题出在这一行:

-javaagent:C:/byteman-3.0.3/lib/byteman.jar=script:C:/app/ECLSManagedConnectionFactory.btm,boot:C:/byteman-3.0.3/lib/byteman.jar:listener:true
                                                                                                  This should have been a comma ^

放弃驱动器名称,并在引导 jar 和 listener:true 之间放置一个逗号。像这样:

-javaagent:/byteman-3.0.3/lib/byteman.jar=script:/app/ECLSManagedConnectionFactory.btm,boot:/byteman-3.0.3/lib/byteman.jar,listener:true
                                                                      This has been fixed - it is a comma as it should be ^