2
votes
Java Web Service framework/library, which is a better one and why ?
We have tried Metro and CXF and kept CXF because Metro includes too many dependencies like Sun's APIs in its jar files which makes it difficult to integrate in another application server than Glass …
1
vote
1
vote
Spring JPA Exception Translation
I do it only by putting the @Repository annotation on my DAO or Manager class that uses the EntityManager.
Make sure that you enabled component scanning:
<context:component-scan …
0
votes
How can I configure Spring to save as much memory as possible?
If your Spring configuration uses AOP and load time weaving, you could use aop.xml to regain some memory from AspectJ by using AspectJ type demotion feature that was introduced in 1.6.5.
…
2
votes
Unit testing DAO, am I doing it right?
What are you testing here? IMHO the only thing important here is your SQL command as there's no specific logic to test in your DAO.
Testing init code like "new PostDAO(null)" is usel …
1
vote
Is there a standalone Java library which provides LDAP style parsing?
You could also look at using Apache directory server either for using some of its classes like lavinio's suggestion for OpenLDAP or to embe …
0
votes
Automatic update of keyword in Word document
You could have a look at how Groovy does it using using their Scriptom module which is based on the …
0
votes
How can I easily mock out a static method in Java (jUnit4)
You could use AspectJ to intercept the static method call and do something useful for your test.
…
0
votes
Injecting EntityManager Vs. EntityManagerFactory
I found that setting the @Repository Spring annotation on our DAOs and having EntityManager managed by Spring and injected by @PersistenceContext annotation is the most convenient way to get everyt …
0
votes
Question about Scope of Static Class Variables in Java
Could it be a classloader problem where the jar that contains your class is duplicated in each WEB-INF/lib of your different applications?
If so, I would try to add this jar to Tomcat libs and not …
1
vote
Java: clone() and equality checks
Have a look at the javadoc for Objet.clone(), it clearly states that while it is typically the c …
0
votes
Ways to fill a list in Java
I prefer approach #1 because the method can be overridden by a sub class that would want to use a different List implementation. Also, I think that naming a factory method as a getter is confusing, …
0
votes
1
vote
What do you monitor with JMX in your production JEE server?
On a previous project, we monitored thread counts and memory, number of HTTP sessions and size of query caches. The other interest of JMX with caches is that you can force a flush.
…
0
votes
