Search Results

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

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

Spring roo Vs (Wicket and Spring)

Our current project uses Spring and Wicket, we have always used Spring but switched to Wicket a year ago. Few advices: Get the "Wicket in Action" book. The user mailing list …
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 …