Reputation: 5514
In my application I have few things which are specific for WebLogic. Is there any tool which can tell me these specification while migrating the application to JBoss?
Upvotes: 6
Views: 6844
Reputation: 4835
If you are doing migrations to JBoss you should look at the Windup tool. It will point out all the places in your code that may need attention and give you a score based on how many things you will need to look at. The reports are nice and categorized and they definitely cover your usage of vendor specific code and suggests hints as to what to convert to.
There is also a maven plugin that you can add to your pom and run reports periodically as you go.
Good Luck!
Upvotes: 6