73
votes
5answers
23k 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 ...
61
votes
11answers
47k 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 ...
53
votes
8answers
14k 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 ...
49
votes
9answers
90k 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
18answers
17k 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 ...
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
2answers
31k 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]
...
41
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
15answers
20k 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
23k 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 ...
33
votes
2answers
5k 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 ...
29
votes
10answers
26k 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 ...
29
votes
6answers
42k 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 ...
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 ...
28
votes
6answers
33k 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 ...
26
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_")
...
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
4answers
17k 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 ...
23
votes
4answers
2k 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
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, ...
22
votes
8answers
21k 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
9k 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 ...
21
votes
5answers
4k 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?
21
votes
6answers
25k 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 ...
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
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 ...
20
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 ...
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
845 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) {
...
18
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 ...
18
votes
5answers
14k 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
8answers
32k 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 ...
18
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 ...
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
5answers
916 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 ...
17
votes
1answer
3k 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
10answers
14k views
How do I prevent Spring 3.0 MVC @ModelAttribute variables from appearing in URL?
Using Spring MVC 3.0.0.RELEASE, I have the following Controller:
@Controller
@RequestMapping("/addIntake.htm")
public class AddIntakeController{
private final Collection<String> users;
...
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 ...
17
votes
11answers
13k 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 / ...
16
votes
3answers
2k views
Hibernate lazy-load application design
I tend to use Hibernate in combination with Spring framework and it's declarative transaction demarcation capabilities (e.g., @Transactional).
As we all known, hibernate tries to be as non-invasive ...
16
votes
6answers
27k views
Getting started with Spring 3 Web MVC - Setting everything up
I'm trying to get started with JAVA/Eclipse/Spring MVC but can't seem to find a "dummies" or "step-by-step" guide for setting everything up and creating the simplest proof-of-concept application.
I ...
16
votes
6answers
3k views
Hidden features of Spring framework?
After seeing many hidden features about programming language, i would like to know hidden features of Spring "de facto" framework. As you know, Spring documentation hides many features and would be ...
15
votes
6answers
5k views
In Spring MVC, how can I set the mime type header when using @ResponseBody
I have a Spring MVC Controller that returns a JSON String and I would like to set the mimetype to application/json. How can I do that?
@RequestMapping(method=RequestMethod.GET, value="foo/bar")
...
15
votes
8answers
358 views
Choose 'better' or more familiar technologies for a new project?
I am looking to start work on a brand-new project, something I've been thinking about for a while as my first independent sellable project.
It's broadly speaking a web-based service application, and ...
15
votes
7answers
11k views
Import Spring config file based on property in .properties file
In my Spring xml configuration I'm trying to get something like this to work:
<beans>
<import resource="${file.to.import}" />
<!-- Other bean definitions -->
</beans>
...
15
votes
5answers
16k views
How to unit test a Spring MVC controller using @PathVariable?
I have a simple annotated controller similar to this one:
@Controller
public class MyController {
@RequestMapping("/{id}.html")
public String doSomething(@PathVariable String id, Model model) {
...
15
votes
5answers
7k views
Dealing with command line arguments and Spring
When I'm writing a Spring command line application which parses command line arguments, how do I pass them to Spring? Would I want to have my main() structured so that it first parses the command line ...
14
votes
5answers
5k views
DAO and Service layers (JPA/Hibernate + Spring)
I'm designing a new app based on JPA/Hibernate, Spring and Wicket. The distinction between the DAO and Service layers isn't that clear to me though. According to Wikipedia, DAO is
an object that ...
14
votes
5answers
11k views
Ruby on Rails vs Grails vs. Spring ROO vs. Spring App
I'm planning on writing a simple web application that will be used by lots of users (as complicated as a simple bookmarking app) and I'm trying to decide which framework/language to use.
I'm very ...