Arne said:
Ben said:
Are there any issues developing both SE and EE on the same machine in
netbeans
environment? (i.e. [sic] library/jar mixup)
You can (and always do) develop Java SE code when developing Java EE.
So if you just install the Java EE edition of your IDE, then you should
be all set.
Whether you can have two different edition sof NetBeans running on the
same system I do not know.
I would guess so, because Eclipse can.
You can run two different versions of NetBeans on the same computer at the
same time, though why you'd want to I have no idea.
The only difference between the SE-only version and the EE-inclusive version
of NetBeans is the addition of modules to the latter,
There is no danger of mixup between Java EE JARs and Java SE JARs. There is
danger of mixing up different versions of the same JAR, for example,
third-party libraries often include a particular version of log4j that may
differ from your own preferred version. I resolve that by excluding such
common JARs from the third-party libraries; instead I define my own library of
common code like log4j.