https://docs.oracle.com/middleware/1213/wls/EJBAD/embedejb.htm#EJBAD1403
This is very convenient since it enables the WebLogic Server embedded EJB container to used by simply adding weblogic.jar to the classpath when running the client:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ java -classpath ${CLASSPATH}:${ORACLE_HOME}/wlserver/server/lib/weblogic.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<properties> | |
<weblogic.jar.path>${oracle.home}/wlserver/server/lib/weblogic.jar</weblogic.jar.path> | |
</properties> | |
.... | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.18</version> | |
<configuration> | |
<argLine>-Xmx128m</argLine> | |
<enableAssertions>false</enableAssertions> | |
<classpathDependencyScopeExclude>compile</classpathDependencyScopeExclude> | |
<additionalClasspathElements> | |
<additionalClasspathElement>${weblogic.jar.path}</additionalClasspathElement> | |
</additionalClasspathElements> | |
</configuration> | |
</plugin> |
https://github.com/buttso/weblogic-embedded-ejb
For more information have a look at the repository and check out the example.
No comments:
Post a Comment