-
1. Re: Migrating from EJB2.1 to EJB3.x
wdfink Jun 6, 2012 1:46 PM (in response to mikemil)As there are only less classes you might do it manual or use tools like JBossIDE, Eclipse, Netbeans .....
I prefer such approach because you might have a separate API archive including all interfaces and classes used by other parties.
The benefit is that you have a git/svn repo where you can track API compatibility and the API 'design' is separated from the implementation.
-
2. Re: Migrating from EJB2.1 to EJB3.x
mikemil Jun 6, 2012 2:29 PM (in response to wdfink)So are you saying you would keep the business interfaces in a separate folder from the implementation? Generally, wouldn't you keep the interfaces in the same package/folder with the impl? Not sure I am following you point?
Manually maintain the interfaces isn't a lot of work but does feel like a step backward from our current process where those classes only exist once they are generated by the build, and never hit the repository. With all of the other possibly migrations, I want to prevent as many 'steps backward' as possible.
-
3. Re: Migrating from EJB2.1 to EJB3.x
wdfink Jun 6, 2012 2:42 PM (in response to mikemil)1 of 1 people found this helpfulI have a separate mvn (or ant) module but the package name is the same as the implementation. So the API-module is separated from the implementaion modul. Yes I know that i.e. with mvn/ant it is possible to separate the client interfaces and classes in a *-client.jar but it was a project requirement.
Manually maintain the classes I prefere because of having the API SCCS controlled, but it is my opinion.
In my last projects it often happen that a developer change a public interface without any notice because in the new build all interfaces are generated and at the end of the release process the regression tests fail because of such incompatible changes.