tom
tom

Reputation: 5514

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?

Upvotes: 6

Views: 6844

Answers (1)

jyore
jyore

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.

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!

Upvotes: 6

Related Questions