Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error during publishing project in weblogic server using eclipse IDE

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.

like image 303
Manu Avatar asked Aug 01 '12 09:08

Manu


2 Answers

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)

like image 132
herry Avatar answered Oct 29 '22 11:10

herry


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

like image 26
Elidio Marquina Avatar answered Oct 29 '22 10:10

Elidio Marquina