Tagged Questions

14
votes
5answers
4k views

When using Spring Security, what is the proper way to obtain current username (i.e. SecurityContext) information in a bean?

I have a Spring MVC web app which uses Spring Security. I want to know the username of the currently logged in user. The code snippet below is what I'm doing. My question is, is this the accepted …
9
votes
8answers
528 views

Doesn’t Spring’s dependency injection break information hiding?

Coming from a C++ background I have to master the complexity of the Java world and its frameworks. Looking at the spring framework for DI I am finding it difficult to believe that I have to make …
8
votes
7answers
584 views

What exactly is Spring for?

I hear a lot about spring, people are saying all over the web that Spring is good framework for web development. But what exactly is it for? How can I use it for my Web-Java application any examples.
7
votes
3answers
2k views

Spring @Autowired usage

What are the pros and cons of using @Autowired in a class that will be wired up by Spring? I probably just don't understand it, but to me it almost seems like an anti-pattern - your classes start …
5
votes
3answers
204 views

How to log the time taken by methods in Springframework?

Is it possible in springframework to log the time taken by methods [ selective | all ] automatically. By automatically i mean, i don't want to go to each method and write the log.debug ( "...." ); …
5
votes
6answers
381 views

Should I learn Spring 2 or 3?

Spring Framework 3 seems to be right around the corner, but the GA version is 2.5.6. If this is the first time I'm approaching the subject, should I start with the stable version, or should I start …
5
votes
8answers
1k views

Using Spring IoC to set up enum values

Hi there, Given the followin enum : public enum Car { NANO ("Very Cheap", "India"), MERCEDES ("Expensive", "Germany"), FERRARI ("Very Expensive", "Italy"); public …
4
votes
3answers
267 views

Use of getBean as opposed to method injection in Spring

I have an application that has multiple screens and each screen is selected via a button. Each screen contains pretty heavy-weight components so it's important that only the activate screen is in …
4
votes
2answers
1k views

How can I use Spring XML configuration to set a bean property with list of all beans of a certain type?

I have the following XML configuration: <bean id="bean1" class="Simple"/> <bean id="bean2" class="Simple"/> <bean id="tasks" class="java.util.ArrayList"> …
4
votes
3answers
2k views

What are some good sample applications using Spring and Hibernate?

I need a quick jump start for using Spring and Hibernate together and I was looking for some sample code to modify and extend. Bonus points for Struts2 and Spring Security integration.
4
votes
6answers
958 views

Spring context files organization and best practices

We have started using Spring framework in my project. After becoming acquainted with the basic features (IoC) we have started using spring aop and spring security as well. The problem is that we now …
3
votes
3answers
175 views

Spring AOP vs AspectJ

I am under the impression that Spring-AOP is best used for application specific tasks such as security, logging, transactions, etc. as it uses custom Java5 annotations as a framework. However, AspectJ …
3
votes
2answers
102 views

How can I use SimpleFormController with Validator with Spring 3?

Hi, I'm using Spring 3 and using SimpleFormController is deprecated. It sounds like we should use annotions like @Controller instead. Okay, but how can I manage the validator for my form within my …
3
votes
3answers
252 views

How do I move my spring xml configuration outside of my web application?

How do I move my spring xml configuration outside of my java web application? I'd like to store my spring.xml outside of my web application so I don't have to create a new build of my application to …
3
votes
5answers
2k views

Best resources to prepare for the “Spring Framework Certification”

Hi there I want to do the Spring Framework Certification (2.5), but there aren't many good resources to prepare for the exam. For the Sun certifications there are a lot of books and trainers …

1 2 3 4 5 10 next
15 30 50 per page