The Spring Framework provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform. A key element of Spring is infrastructural support at the application level: Spring focuses on the "plumbing" of enterprise applications so that teams can focus on application-level business logic, without unnecessary ties to specific deployment environments.
71
votes
5answers
22k views
Spring @Autowired usage
What are the pros and cons of using @Autowired in a class that will be wired up by Spring?
Just to clarify, I'm talking specifically about the @Autowired annotation, not auto-wiring in XML.
I ...
60
votes
11answers
45k 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 ...
52
votes
8answers
13k views
Why would I use Scala/Lift over Java/Spring?
I know this question is a bit open but I have been looking at Scala/Lift as an alternative to Java/Spring and I wonder what are the real advantages that Scala/Lift has over it. From my perspective and ...
46
votes
16answers
5k views
What are the benefits of dependency injection containers?
I understand benefits of dependency injection itself. Let's take Spring for instance. I also understand benefits of other Spring featureslike AOP, helpers of different kinds, etc. I'm just wondering, ...
44
votes
9answers
85k views
inject property value into Spring bean
I have a bunch of Spring beans which are picked up from the classpath via annotations, e.g.
@Repository("personDao")
public class PersonDaoImpl extends AbstractDaoImpl implements PersonDao {
// ...
43
votes
10answers
2k 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.
42
votes
18answers
16k views
Java EE 6 vs. Spring 3 stack [closed]
I'm starting a new project now. I have to choose technologies. I need something light, so no EJB or Seam. On the other hand I need JPA (Hibernate or alternative) and JSF with IceFaces.
Do you think ...
40
votes
11answers
12k views
Should I use EJB3 or Spring for my business layer?
My team is developing a new service oriented product with a web front-end. In discussions about what technologies we will use we have settled on running a JBoss application server, and Flex frontend ...
39
votes
2answers
29k views
Spring 3.0 - Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/security]
Any ideas what could be the cause of this?
Unable to locate Spring
NamespaceHandler for XML schema
namespace
[http://www.springframework.org/schema/security]
...
39
votes
15answers
19k views
How to learn Spring Framework fast? [closed]
Possible Duplicate:
What are the best books for Spring and Spring MVC?
Please recommend some good resources(especially must have books) about spring framework?
38
votes
9answers
22k views
Spring @Transactional Annotation Best Practice
We are currently discussing the Best Practice for placing the @Transactional annotations in our code.
Do you place the @Transactional in the DAO classes and/or their methods or is it better to ...
30
votes
2answers
4k views
Shiro vs. SpringSecurity
I have currently evaluating Java based security frameworks, I am a Spring 3.0 user so it seemed that SpringSecurity would be the right Choice, but Spring security seems to suffer from excessive ...
28
votes
12answers
13k views
Injecting Mockito mocks into a Spring bean
I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on ...
28
votes
13answers
3k views
Understanding the need for a DI framework
This might be a naive question. I'm currently learning the Spring framework and dependency injection. While the basic principle of DI is rather easy to grasp, it's not immediately obvious why you need ...
27
votes
10answers
25k views
Why is Spring's ApplicationContext.getBean considered bad?
I asked a general Spring question and had multiple people respond that calling Spring's ApplicationContext.getBean() should be avoided as much as possible. Why is that?
How else should I gain ...
26
votes
6answers
31k views
Getting Spring Application Context
Is there a way to statically/globally request a copy of the ApplicationContext in a Spring application?
Assuming the main class starts up and initializes the application context, does it need to pass ...
25
votes
3answers
1k views
Spring and the anemic domain model
So, I've noticed that I definitely have a tendency to pattern my Spring/Hibernate stack objects like this:
Foo controller makes a call to "FooService"
FooService calls FooRepository.getById() method ...
25
votes
18answers
5k views
Java Frameworks War: Spring and Hibernate
My developers are waging a civil war. In one camp, they've embraced Hibernate and Spring. In the other camp, they've denounced frameworks - they're considering Hibernate though.
The question is: Are ...
24
votes
1answer
11k views
Map enum in JPA with fixed values?
I'm looking for the different ways to map an enum using JPA. I especially want to set the integer value of each enum entry and to save only the integer value.
@Entity
@Table(name = "AUTHORITY_")
...
24
votes
10answers
19k views
What are the best books for Spring and Spring MVC? [closed]
My team is about to build a new product and we are using Spring and Spring MVC. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My manager will be ...
23
votes
4answers
1k views
Is anyone using SpringSource tc server as a Tomcat replacement?
It looks like SpringSource has just released a GA version of their tc Server application server.
It sounds from their description like it is a drop-in replacement for Apache Tomcat, with better ...
23
votes
5answers
40k views
Type safety: Unchecked cast
In my spring application context file, I have something like:
<util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String">
<entry ...
22
votes
4answers
16k views
Injecting EntityManager Vs. EntityManagerFactory
A long question, please bear with me.
We are using Spring+JPA for a web application. My team is debating over injecting EntityManagerFactory in the GenericDAO(a DAO based on Generics something on the ...
22
votes
8answers
20k views
What is the proper way to re-attach detached objects in Hibernate?
I have a situation in which I need to re-attach detached objects to a hibernate session, although an object of the same identity MAY already exist in the session, which will cause errors.
Right now, ...
22
votes
12answers
8k views
Xml configuration versus Annotation based configuration
In a few large projects i have been working on lately it seems to become increasingly important to choose one or the other (XML or Annotation). As projects grow, consistency is very important for ...
22
votes
11answers
11k views
Template Engines for Spring Framework
I've taken quite a shine to the Spring Framework and would like to get into it a bit more. I have noticed that aside from plain vanilla JSPs there are various template engines for use with Spring MVC, ...
21
votes
5answers
12k views
Programmatic use of Spring Security
I am using Wicket with the Wicket Auth Project for my presentation layer and I have therefore integrated it with Spring Security. This is the method which is called by Wicket for authentication for ...
21
votes
6answers
13k views
Unit testing with Spring Security
My company has been evaluating Spring MVC to determine if we should use it in one of our next projects. So far I love what I've seen, and right now I'm taking a look at the Spring Security module to ...
20
votes
5answers
3k views
Why Spring Framework?
I hear nowadays a lot about the Spring Framework. Why is there so much buzz around the Spring Framework in the industry?
20
votes
13answers
6k views
What should I learn first, Spring or Hibernate?
I've just started learning Struts and I'm trying to be marketable for a good job as a Java programmer. My next decision would be choosing which to learn next, Spring or Hibernate?
Also do you guys ...
20
votes
2answers
24k views
Spring - Annotation Based Controller - RequestMapping based on query string
In Spring annotation-based controller, is it possible to map different query strings using RequestMapping to different methods.
for example
@RequestMapping("/test.html?day=monday")
public void ...
20
votes
7answers
11k views
PHP MVC (symfony/Zend) vs ASP MVC vs Spring MVC vs Ruby on Rails?
I'm paralyzed by choice.
I know PHP, C# and Java fairly well as languages. Most of my web development in the past has been in PHP (with my own or other OSS frameworks). I've spent the last 2-3 ...
20
votes
8answers
3k views
What's the best way to get started with OSGI?
What makes a module/service/bit of application functionality a particularly good candidate for an OSGi module?
I'm interested in using OSGi in my applications. We're a Java shop and we use Spring ...
19
votes
3answers
795 views
How to prevent parameter binding from interpreting commas in Spring 3.0.5?
Consider the following controller method:
@RequestMapping(value = "/test", method = RequestMethod.GET)
public void test(@RequestParam(value = "fq", required = false) String[] filterQuery) {
...
19
votes
6answers
2k views
what are good blogs to read relating java, spring, hibernate, maven?
To continue to question further I'm more interested in blogs, websites who once in a while release a tutorial, tip or best-practice on the topics I mentioned. For ex :
http://net.tutsplus.com/ is ...
18
votes
5answers
12k views
How to define a List bean in Spring?
I'm using Spring to define stages in my application. It's configured that the necessary class (here called Configurator) is injected with the stages.
Now I need the List of Stages in another class, ...
18
votes
20answers
4k views
Where can I find a good introductory tutorial for Spring?
I am a Java developer but up to now have not had any hands on experience using the Spring framework.
Does anyone know of anyone good online tutorials that explain the basics and offer good examples ...
17
votes
6answers
4k views
Can I replace a Spring bean definition at runtime?
Consider the following scenario. I have a Spring application context with a bean whose properties should be configurable, think DataSource or MailSender. The mutable application configuration is ...
17
votes
1answer
2k views
difference between applicationContext and spring-servlet.xml in spring
In spring framework are applicationContext.xml and spring-servlet.xml related anyhow ? will the properties files declared in applicationContext be available to DispatcherServlet . On a related note ...
17
votes
8answers
30k views
Spring 3 JSON with MVC
Is there a way to build Spring Web calls that consume and produce application/json formatted requests and responses respectively?
Maybe this isn't Spring MVC, I'm not sure. I'm looking for Spring ...
17
votes
8answers
11k views
Can SpringMVC be configured to process all requests, but exclude static content directories?
If I map my spring application to process all incoming requests ('/*'), then requests for static content return 404's. For example, a request for "myhost.com/css/global.css" would return a 404, even ...
17
votes
3answers
2k views
Spring - @Transactional - What happens in background?
I want to know what actually happens when you annotate a method with @Transactional?
Of course, I know that Spring will wrap that method in a Transaction.
But, I have the following doubts:
I heard ...
17
votes
6answers
23k views
Spring - How to call a method after bean initialization is complete?
I have a use case where I need to call a (non-static) method in the bean only-once at the ApplicationContext load up. Is it ok, if I use MethodInvokingFactoryBean for this? Or we have a some better ...
17
votes
6answers
1k views
JAR files, don't they just bloat and slow Java down?
Okay, the question might seem dumb, but I'm asking it anyways.
After struggling for hours to get a Spring + BlazeDS project up and running, I discovered that I was having problems with my project as ...
16
votes
5answers
802 views
Is this design of Spring singleton beans thread safe?
Consider the following Spring Service class. The spring scope defined is Singleton. The two service beans auto-wired as fields in the class below have similar structure - they too are composed of ...
16
votes
3answers
3k views
@Resource vs @Autowired
Which annotation, @Resource (jsr250) or @Autowired (Spring specific) should I be using when using DI?
I have successfully used both in the past, @Resource(name="blah") and @Autowired ...
16
votes
3answers
2k views
Hidden Features of Google Guice
Google Guice provides some great dependency injection features.
I came across the @Nullable feature recently which allows you to mark constructor arguments as optional (permitting null) since Guice ...
16
votes
3answers
4k views
Android and Dependency Injection
I've been looking around, in vain, for some information on using a dependency injection container in Android development. Specifically, how to override the creation of an Activity in a way that will ...
16
votes
2answers
9k views
Spring difference in using bean id and bean name in configuration file
please tell me if is there any difference in using bean id and bean name in configuration files
16
votes
11answers
12k views
Best resources to prepare for the “Spring Framework Certification”
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 (Enthuware / ...