0
votes
4answers
76 views
ASM jar - Why my java project has a dependency on this?
I have a Java project and internally it is dependent on asm jar. Strangely, I don't even know why my project somehow is dependent on this library (might be brought in by maven as a transitive …
3
votes
3answers
106 views
Java EE6 over EE5 ?!
We are at the edge of getting Java EE6 (with Glassfish v3 as reference implementation). Planned release is December 09. While still quite a number of companies are struggling to move their codebase to …
1
vote
1answer
21 views
Spring - How ‘multiple’ AOP behaviors to sevices are resolved?
Hello, I want to know that whether we can apply 'multiple' AOP behaviors to our service classes or not?
Lets just say, i do this to my BankServiceImpl class:
@Transactional on top of one of the …
0
votes
2answers
153 views
Spring - Weird Error in Bean Creation
Any idea why I am getting this exception?
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myService' defined in class path resource [context.xml]: …
0
votes
2answers
123 views
Spring - StackOverflowError in Bean creation
Hello, I am getting the following error:
java.lang.IllegalStateException: Failed to load ApplicationContext
at …
0
votes
3answers
128 views
Spring - How to load a new hierarchical context?
Hello,
Has anyone tried loading multiple hierarchical contexts (parent/child) using Spring?
Could you explain how to do that as I could not locate enough documentation on this?
Thanks in advance.
0
votes
3answers
92 views
@WebServlet annotation support in java 1.6.013
Hi,
I'm stepping into the world of Servlets and 3.0 in particular and I saw certain methods and annotations used in examples and tutorials which talked about this being available when JAVA 6.0 is …
1
vote
2answers
149 views
Spring - Ways to include a jar which itself is using Spring in a Spring project
I need to use some 3rd party jar in my project. The project is a Spring project and the jar is also using Spring.
Is there a way by which I can include the 3rd party jar in my project? I am finding …
1
vote
2answers
143 views
Spring - When should I consider loading another context in same JVM?
I was just thinking that when should I actually consider loading more than one application contexts in Spring? All so far I have been merging the context files with <include> such that only one …
1
vote
2answers
257 views
How do you call List.size() from a JSF 2.0 Facelets Template?
What is the syntax for calling list.size() in a JSF 2.0 Facelets template (eg, using an h:outputText element)?
1
vote
1answer
197 views
Differences between JPA and JPA2
Does anyone have a list of the changes between JPA 1 and JPA 2?
I have read about the Criteria queries and other changes, but I would like a "what's new" kind of reference.
Thanks
