Tagged Questions

1
vote
2answers
37 views

Spring applicationcontext loading hooks

Are there any hooks into the Spring ApplicationContext loading process? I want to run a piece of code just before the application context loads (before any beans/properties/aspect …
0
votes
1answer
120 views

Grails Application context

Hi! I have a grails / groovy application running under tomcat. For some reason I have to be able to change the application context dynamically. That is, I want to be able (at login …
3
votes
1answer
484 views

Spring ApplicationContext Bean Scope

When you create a Service bean or Dao bean in your Spring applicationContext.xml file, what is the scope of those beans? Will every person who accesses the web application use th …
1
vote
4answers
932 views

How do you load a bean into Spring MVC’s application context?

As I understand it, Spring MVC application has two distinct contexts, the application context and the web context, which are controlled by applicationContext.xml and dispatcher-ser …
2
votes
3answers
175 views

“Recycling” names within a spring application context

lets say, I have a lot of stuff within my spring application context which looks like that <bean name="foo.0001" class="com.example.MyClass"> <property name="name" va …
0
votes
1answer
422 views

Spring.Net IoC Application Context Problem

Hi, I'm having the following "problem". I created a application context file for spring.net. The configuration looks like this: <spring> <context> <resource ur …
1
vote
1answer
928 views

Splitting applicationContext to multiple files

What is the correct way to split Spring's configuration to multiple xml files? At the moment I have /WEB-INF/foo-servlet.xml /WEB-INF/foo-service.xml /WEB-INF/foo-persistence.xml …
1
vote
4answers
513 views

Passing properties to a Spring context

I'm using Spring to handle RMI calls to some remote server. It is straightforward to construct an application context and obtain the bean for remote invocations from within the cli …
7
votes
6answers
3k 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, …
1
vote
0answers
637 views

Glassfish: web application deployed with non-root context interperetes requests relative to domain1/docroot

The webapp uses Spring MVC. <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="urlMap"> <map> …