1

I had this issue with a deploy of a spring boot application on weblogic 12c server. The problem is that when I try to deploy this application on my local weblogic server it works fine, but when I deploy the same application (EAR) on pre-prod server, it doesn't.

The weblogic error is: java.io.IOException weblogic.utils.compiler.ToolFailureException

4
  • What's the Spring Boot version? Commented Jan 21, 2020 at 17:16
  • Spring Boot 2.0, jdk 1.8 Commented Jan 21, 2020 at 17:18
  • Does your servlet initializer implement WebApplicationInitializer as per documentation? Commented Jan 21, 2020 at 17:22
  • no, my servlet inizializer extends SpringBootServletInitializer Commented Jan 21, 2020 at 17:24

2 Answers 2

1

The problem was the version of weblogic server(12.1.3), it doesn't support spring boot 2.2.4. For fix this issue the solution was downgrade my spring boot application to 2.0.4 version.

Sign up to request clarification or add additional context in comments.

1 Comment

how did you find this? where can I find a compatibility matrix?
0

My problem was different. I had below dependency in pom.xml and it was making this issue on WebLogic: 12.1.3

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.10.0</version>
</dependency>

Changed it like below

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-core</artifactId>
        <version>2.8.10</version>
    </dependency>

Then issue is resolved.

1 Comment

Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.