Reputation: 31
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
Upvotes: 1
Views: 4345
Reputation: 1
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.
Upvotes: 0
Reputation: 31
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.
Upvotes: 1