Error during publishing project in weblogic server using eclipse IDE

17,149

Solution 1

May be already solved this issue. I think that error message occurred because not all mappings supported in Deployment Assembly.

Please right click to web project:

Properties -> Deployment Assembly

and delete /WEB-INF/lib row.

Here is an explanation:

If you are mapping external folders to web resources in Deployment Assembly, NOT all the mappings are supported, only resource folder mapping to EAR or web content root are supported in split source. (In your case, mapping to '/WEB-INF/classes/' should be supported, which is a bug we will fix in future release)

Solution 2

In my case, after trying to wake up a project made on Maven, i removed the line was say /WEB-INF/web.xml, on:

Properties -> Deployment Assembly

My configuration is on Spring Tool Suite with Oracle Web Logic Server Tools, downloaded from Marketplace, and after updated using the Luna OEPE plugin via url Deploying a WAR solution to WebLogic 12.1.3

Share:
17,149
Manu
Author by

Manu

Software Developer for Banking and Insurance Applications.

Updated on June 12, 2022

Comments

  • Manu
    Manu almost 2 years

    I'm getting the below error during publishing projects in WebLogic server (using Eclipse IDE).

     Error with publish task 'Split Source Mapping Generation Task'.
     Error processing split source mapping:
     'C:/Projects/EnrollmentWS/implementation/lib'='/WEB-INF/lib'
    
     WebLogic split source deployment only supports resource folder mapping to EAR or 
     web content root.
     Please change the deployment mode to exploded archive in Server Editor.
     Note: I tried after change deployement mode to explode archive.now im getting 'module
     exception'  
    

    Thanks in advance.