Reputation: 3247
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.
Upvotes: 5
Views: 19240
Reputation: 9
Follow these steps.....
- Stop the server
- Right click on Oracle server and go to Properties.
- Go to WebLogic > Publishing
- Select Publish as an explode archive
Go to your domain path
C:\Oracle\Middleware\user_projects\domains\Domain_Name\servers\AdminServer
Delete everything "except security".
Now restart the server. It will work fine.
Upvotes: 0
Reputation: 121
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
Upvotes: 1
Reputation: 1738
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)
Upvotes: 8