The Spring Framework is an open source application framework for the java platform. It provides services and functionality across the application domain, including a core inversion-of-control container, technology-agnostic data-access and MVC layers, extensive AOP support, task scheduling, and ...

learn more… | top users | synonyms (1) | spring jobs

43
votes
9answers
30k 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 ...
11
votes
2answers
14k views

JQuery, Spring MVC @RequestBody and JSON - making it work together

I would like to have a bidirectional JSON to Java serialization I'm using successfully the Java to JSON to JQuery path... (@ResponseBody) e.g. @RequestMapping(value={"/fooBar/{id}"}, ...
45
votes
18answers
19k 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 ...
20
votes
6answers
20k views

New to Spring - BeanFactory vs ApplicationContext?

I'm pretty new to the Spring Framework, I've been playing around with it and putting a few samples apps together for the purposes of evaluating Spring MVC for use in an upcoming company project. So ...
13
votes
4answers
18k views

Spring schemaLocation fails when there is no internet connection

Hi I am using Spring and at application-context.xml file; i have definations like : <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
13
votes
5answers
3k views

Spring session-scoped beans (controllers) and references to services, in terms of serialization

a standard case - you have a controller (@Controller) with @Scope("session"). classes put in the session usually are expected to implement Serializable so that they can be stored physically in case ...
2
votes
2answers
1k views

Mapping ManyToMany with composite Primary key and Annotation:

I'm trying to create manytomany realation between Student and Teaching Course using Composite Primary key: my classes: Entity @Table(name="Student_mtm_cId") public class Student { private ...
3
votes
2answers
922 views

@Service are constructed twice

I have a problem with my Spring application where my @Service classes are being created twice when the application starts. I know this is a problem with my configuration, as I've experienced it ...
56
votes
8answers
107k 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 { // ...
8
votes
2answers
14k views

Using Spring, mapping to root in web.xml, static resources aren't found

What I'm trying to do is map requests to the servlet root (correct terminology?). I'm at the point where URLs are mapped to correct view but all the static content - css, javascript, images - that is ...
38
votes
13answers
18k 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 ...
9
votes
2answers
10k views

property-placeholder location from another property

I need to load some properties into a Spring context from a location that I don't know until the program runs. So I thought that if I had a PropertyPlaceholderConfigurer with no locations it would ...
73
votes
12answers
54k 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 ...
24
votes
12answers
11k 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 ...
30
votes
1answer
15k 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_") ...
34
votes
7answers
42k 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 ...
37
votes
6answers
49k 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
7answers
14k 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 ...
16
votes
6answers
43k views

No mapping found for HTTP request with URI [/WEB-INF/pages/apiForm.jsp]

My handler forwards to internalresourceview 'apiForm' but then i get error 404 RequestURI=/WEB-INF/pages/apiForm.jsp. I'm sure apiForm.jsp located in /WEB-INF/pages/ 13:45:02,034 DEBUG ...
10
votes
4answers
10k views

Define Spring JAXB namespaces without using NamespacePrefixMapper

[Heavily edited as understanding progresses] Is it possible to get Spring Jaxb2Marshaller to use a custom set of namespace prefixes (or at least respect the ones given in the schema file/annotations) ...
7
votes
3answers
6k views

Howto get rid of <mvc:annotation-driven />?

Up to now, <mvc:annotation-driven /> has caused plenty of trouble for me, so I would like to get rid of it. Although the spring framework docs clearly say what it is supposed to be doing, a ...
6
votes
3answers
502 views

Best practice for getting active user's UserDetails?

In my controllers, when I need the active (logged in) user, I am doing the following to get my UserDetails implementation: User activeUser = ...
2
votes
2answers
470 views

Dynamic fields in JSF beans

I want to let my client create his own fields and bean in the CMS dynamically. As well, once he creates a form, I need to create an Hibernate Entity that could be saved to the database. Is there a ...
8
votes
6answers
9k views

Fixing BeanNotOfRequiredTypeException on Spring proxy cast on a non-singleton bean?

I'm having an issue with pulling a Spring bean from an application context. When I try; InnerThread instance = (InnerThread) SpringContextFactory.getApplicationContext().getBean("innerThread", ...
2
votes
4answers
698 views

JSP, Spring, Struts or GWT for College Project [closed]

Possible Duplicate: Choosing a Java Web Framework now? I am a final year student doing my Bachelor in Enginering(Computers) course from Mumbai University. We are supposed to do a project ...
1
vote
2answers
578 views

Why DispatcherServlet creates another application context?

I have configured the root application context using ContextLoaderListener and the context init-parameter contextConfigLocation. The root context is then accessed by JSF (*.jsf) variable-resolver. It ...
2
votes
3answers
1k views

Tiles 2 And No mapping found for HTTP request with URI - Spring-MVC

I want to use Spring-Tiles intergration. Here you can see how my app looks like. So my question is: why Spring-MVC dispatcher Servlet can not resolve my Target page ???
37
votes
2answers
7k 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 ...
15
votes
2answers
7k views

HibernateDaoSupport is not recommended, why?

I've been doing some work with Hibernate 3.5 and Spring 3 recently, I'm fairly new with Hibernate and thought the HibernateDaoSupport class in Spring made it nice and easy to use Hibernate with my ...
26
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 ...
11
votes
4answers
15k views

how to display custom error message in jsp for spring security auth exception

I want to display custom error message in jsp for spring security authentication exceptions. For wrong username or password, spring displays : Bad credentials what I need : Username/Password ...
19
votes
21answers
5k 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 ...
12
votes
3answers
1k views

Caching with Hibernate + Spring - some Questions!

Im working on developing a webapplication with Spring 3 and Hibernate 3.6. At the moment I try to understand how Caching with Spring and Hibernate works. I found some sources about Caching with ...
28
votes
10answers
26k 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, ...
10
votes
1answer
4k views

Execute method on startup in spring

Is there any Spring 3 feature to execute some methods when the application starts for the first time? I know that I can do the trick of setting a method with @Scheduled annotation and it executes just ...
6
votes
2answers
1k views

How to create custom methods for use in spring security expression language annotations

I would like to create a class that adds custom methods for use in spring security expression language for method-based authorization via annotations. For example, I would like to create a custom ...
9
votes
6answers
6k views

In Spring with jpa/hibernate, how do I keep a session open to avoid lazy initialization exceptions?

I currently mark collections in entity beans as eager to avoid getting a lazy initialization exception when I try to access the collection properties after loading the bean with the EntityManager. If ...
3
votes
1answer
2k views

Using JAVA NIO framework in SPRING server

I'm implementing an hybrid server application that mixes a Web-Servlet and a plain Java application. The java application manages thousands of sockets for remote devices, while the Web application ...
1
vote
2answers
2k views

User Granted Authorities are always : ROLE_ANONYMOUS?

i am using the following method to make a programmatic login after registration private void autoLogin(User user, HttpServletRequest request) { GrantedAuthority[] grantedAuthorities ...
7
votes
6answers
4k views

Stripes, Spring, Play (or ?) : which high performance Java framework to use?

We are beginning to build out a webapp which will probably see a lot of traffic. We dont have a lot of money, so we want to reduce hardware cost. More or less, I think that means we will try to be as ...
4
votes
3answers
8k views

How to inject spring beans into a jsp 2.0 SimpleTag?

Currently my jsp 2.0 tags that need spring beans use this code: ac = WebApplicationContextUtils.getWebApplicationContext( servletContext); ac.getBeansOfType(MyRequestedClass.class); The I just get ...
3
votes
3answers
390 views

Why not Spring framework? [closed]

Are there any disadvantages to tie my application to Spring framework? I'm not talking about bugs or issues if any. I'm talking about strategic architectural things that will influence on my ...
3
votes
2answers
2k views

How to pass a session attribute as method argument (parameter) with Spring MVC

In short, I want something like: public String action(@SessionAttribute User user) {..} instead of public String action(HttpSession session) { User user = session.getAttribute("user"); } ...
2
votes
1answer
3k views

Multiple Entity Manager issue in Spring when using more than one datasource

I have two entity managers in my applicationContext.xml which corresponds to two different databases. I can easily query database1 with entityManager1, but when I try to access database2 with ...
3
votes
2answers
858 views

Brainstorming: Weird JPA problem, possibly classpath or jar versioning problem?

I'm seeing a weird error message and am looking for some ideas as to what the problem could be. I'm sort of new to using the JPA. I have an application where I'm using Spring's Entity Manager ...
2
votes
1answer
308 views

Retrieve image from blob via Hibernate (not JDBC)

I've found very nice solution of retrieving images from db/blob thanks to How to retrieve and display images from a database in a JSP page? But this is solution that uses JDBC connection on every ...
2
votes
4answers
251 views

How to define JPA?

I have just joined a on going project based on spring framework. It usage hibernate as ORM system. and it is well integrated. I have learned a lot with this project. But some how i am not satisfied ...
1
vote
3answers
151 views

Spring @Transactional annotations ignored

My @Transactionnal annotations seems to be ignored. I have no errors on the initialization of the Spring container. It looks like my method has not been proxied by Spring TX framework. During the ...
1
vote
2answers
428 views

CouchDb - MongoDb and NoSQL Databases Comparision (working with XML Documents)

I am working on a project using Java and Spring 3. There is a new task for me. There will be Xml files and I get that files and convert them into Objects. After that I will put them into a database. ...
1
vote
2answers
988 views

implement AOP for Controllers in Spring 3

How do I implement AOP with an annotated Controller? I've search and found two previous posts regarding the problem, but can't seem to get the solutions to work. posted solution 1 posted solution 2 ...

1 2 3 4 5 66