8
votes
9answers
1k views
What’s the best way to share business object instances between Java web apps using JBoss and Spring?
We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another we …
2
votes
6answers
899 views
With multi-module Maven projects, is it possible to make my root (pom-packaged) project available in Eclipse?
We have a fairly large group of Maven2 projects, with a root POM file listing 10+ modules and a lot of properties used by the modules (dependency version numbers, plugin configuration, common depen …
2
votes
7answers
413 views
Is Java Reflection on Inherited Methods Different in Windows and Linux?
While setting up Hudson for continous integration testing (on a JeOS server), I've come across some strange behaviour I'm hoping the fine people at SO can explain to me.
Our unit tests depe …
3
votes
2answers
373 views
Why does query caching with Hibernate make the query ten times slower?
I'm currently experimenting with EJB3 as a prestudy for a major project at work. One of the things I'm looking into is query caching.
I've made a very simple domain model with JPA annotati …
1
vote
What’s the best way to share business object instances between Java web apps using JBoss and Spring?
Thank you for your answers so far. We're still not quite there, but we have tried a few things now and see things more clearly. Here's a short update:
The solution which appears to be the m …
3
votes
JPA/Hibernate in Java SE 6, Best Practices for data access
I'm not sure what's considered the best approach to this, but at my workplace, we have based most of our Hibernate interaction on these articles:
…
2
votes
3
votes
repeated logging in log 4j in java
I've experienced similar behavior, and it turned out that Log4J was configured more than once; using the BasicConfigurator, but also with a log4j.xml file I had forgotten about. Could it be that th …
2
votes
What does your Java development environment consist of?
MyEclipse - lots of plugins, the most important of them are Spring IDE, FileSync and Subversive.
Maven for building
Archiva as proxy for Maven artifacts, and also to deploy …
1
vote
Is Java Reflection on Inherited Methods Different in Windows and Linux?
Mystery partially solved:
MethodUtils.getMatchingAccessibleMethod() apparently works differently on Linux and Windows.
By using MethodUtils.getAccessibleMethod() instead, it works. …
0
votes
Change Java package name in a SVN branch
I can't see any really good solutions, but would it be an option to just create subclasses under the new package name?
Then the patches could be applied to the super classes, and the sub c …
1
vote
Java public static main()
The brackets mean that it's an array of Strings. And there can be parameters, e.g. from the command line when your start your application.
…
2
votes
With multi-module Maven projects, is it possible to make my root (pom-packaged) project available in Eclipse?
I tried this again, with Galileo and the latest version of m2eclipse. It is now possible to import Maven projects directly (without mvn eclipse:eclipse), and it turns out that the root POM is also …
2
votes
How can I access private class members in Java?
Some methods I've used in the past:
Make _ix protected, create a subclass where you implement a setter
Make a constructor taking the value for _ix as a parameter
Use …
