Is it possible, and when yes, how?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Actually, the JAX-WS implementation bundled in WebLogic 10.3 is based on JAX-WS RI 2.1.4 as documented in the What's New in WebLogic Server:
But this is just a side note :) Now, to answer your question, yes, it is possible. Basically, the idea is to package everything as an EAR and to provide a
weblogic-application.xml
to specify the Java packages that need to loaded from the EAR instead of from WebLogic's default classloader. To do so, follow these steps:In the
META-INF/weblogic-application.xml
of your EAR, putPut the required JARs in the
WEB-INF/lib
of your WAR.If WebLogic is reporting classloading issues, you may have to add more Java packages under the
prefer-application-packages
element.