此内容没有您所选择的语言版本。
Chapter 7. Known Issues
See Known Issues for JBoss EAP 7.2 GA to view the list of known issues for this release.
Additionally, be aware of the following:
If you try to start an embedded server from a management CLI instance that was started using the
jboss-cli-client.jarfile on JDK 11, you will get an error:WFLYEMB0014: Cannot load module. To avoid this error, you must add--add-modules java.sewhen starting the management CLI:java --add-modules java.se -jar jboss-cli-client.jar
$ java --add-modules java.se -jar jboss-cli-client.jarCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
By default, JBoss EAP allows duplicate XA resources to return
XAER_PROTOfor duplicatexa_endcalls, as opposed to the expected JTA 1.2 behavior of allowing each resource to perform anxa_endcall. This is because JBoss EAP ships with Artemis, which does not currently support the JTA 1.2 behavior for duplicatexa_endcalls, as described in JBEAP-12671. You can enable this strict behavior for JBoss EAP to be fully JTA 1.2 compliant by passing in the flag-DJTAEnvironmentBean.strictJTA12DuplicateXAENDPROTOErr=true. However, this will result in errors when using Artemis, and transactions that include duplicate Artemis resources will not be able to commit. If a client application directly depends on Artemis client JARs, for example,
artemis-jms-client,artemis-commons,artemis-core-client, orartemis-selector, then you must add a dependency in yourpom.xmlfile forwildfly-client-properties:<dependency> <groupId>org.jboss.eap</groupId> <artifactId>wildfly-client-properties</artifactId> </dependency>
<dependency> <groupId>org.jboss.eap</groupId> <artifactId>wildfly-client-properties</artifactId> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow This is to avoid a
JMSRuntimeExceptionwhen callingmessage.getJMSReplyTo()from an older JBoss EAP 7 client as described in JBEAP-15889.If you install the JBoss EAP 7.2 RPM packages on RHEL 7 and it only includes the default RHEL JDK 11 package, due to the dependencies currently defined in the packages, the RPM will also install JDK 1.8. This will result in JDK 1.8 being set as the default JDK. For this reason, you must use
alternativesto configure the system to use JDK 11.alternatives --config java
alternatives --config javaCopy to Clipboard Copied! Toggle word wrap Toggle overflow Enter the number that corresponds to JDK 11.
- Prior to JBoss EAP 7.2, services defined in global modules were accessible from external dependencies, even if they were not configured to be exposed externally. In JBoss EAP 7.2, this behavior was corrected. Since JBoss EAP 7.2, if you want to make a service in a global module available externally, you must correctly configure them. Services that are not explicitly configured are not exposed. For details about how to configure a service to be exposed externally, see Define Global Modules in the Configuration Guide for JBoss EAP.
Revised on 2019-09-26 12:52:54 UTC