Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebLogic to JBoss migration

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?

like image 755
tom Avatar asked Sep 19 '13 21:09

tom


1 Answers

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.

http://windup.jboss.org/

There is also a maven plugin that you can add to your pom and run reports periodically as you go.

Good Luck!

like image 173
jyore Avatar answered Sep 28 '22 01:09

jyore