0
votes
2answers
23 views
Access properties file programatically with Spring?
We use the code below to inject Spring beans with properties from a properties file.
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
…
0
votes
7answers
39 views
Where I can find good Spring project example with Hibernate?
I need to make project with Spring + Hibernate, where I could find good example project how basic things are done?
0
votes
2answers
15 views
Getting server name in ContextLoaderListener
My listener is filling Cache (Terracota) and if something goes wrong at application start, ExceptionInInitializerError is thrown. I would like to get server name (like on HttpServl …
2
votes
2answers
21 views
Spring - share web application context between different webapps
Hi,
I have a multi-module maven project. One of the modules is a util layer that has some spring beans. I want to share the same spring beans within the other modules.
The other m …
2
votes
1answer
56 views
Rewrite spring-security redirect URLs
I'm trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I've got is that when spring-security notices that an anonymous user is trying to access a prot …
0
votes
3answers
50 views
Spring Advice - submitting a form
Hi,
I am having serious problems with code I have written with Spring so I have decided to start from scratch and ask for advice. Here are my requirements:
When the page first …
1
vote
1answer
21 views
How to tie the Lifecycle for a Spring Bean to the webapps’ lifecycle ?
I want to create a bean that has start() and stop() methods.
When the webapp's context is active, start() is called during Spring's runtime bootup. When the webapp is undeployed o …
0
votes
1answer
21 views
How to restart transactions on deadlock/lock-timeout in Spring?
Hi,
What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: decla …
0
votes
3answers
29 views
Multiple @ManyToMany sets from one join table
Hi guys,
I'm mapping a proprietary database to Hibernate for use with Spring. In it, there are a couple of jointables that, for entity A and entity B have the following schema:
C …
1
vote
1answer
11 views
ref vs idref attributes in spring bean declaration
Can someone tell me the difference and which one has to be used when ?
<bean id="b1" class="" />
<bean id="" class="">
<property name="b1" ref="b1" />
</bea …
1
vote
6answers
79 views
Which java web framework to choose for client side and server side validation?
We are currently searching for a java framework , that made validation easily on server side and both client side,Spring,Hibernate,Play are the framework choices that we are search …
1
vote
1answer
99 views
Spring’s IOC with annotations is confusing for a Guice guy. Help to enlighten me
I came into IOC via Google Guice.
And now I've been forced to use Spring 2.5.6 at work & I am lost because Spring is quite complicated. Here are some questions after reading b …
1
vote
1answer
93 views
many-to-many (self referencing problem) vs double one-to-many
Hello! I'm facing some of the problem some of you already talked about and sorry to bring this out again.
It's just like I still don't get certain aspect of hibernate. I'm using m …
0
votes
2answers
32 views
Spring configuration in GWT Project?
I am developing a GWT-Spring-Hibernate project and I want to use Spring Autowired annotation in GWT Service Servlet but my autowired annotated service is not injected. it is null. …
0
votes
2answers
34 views
Putting array of arrays into a spring context
I just found a TestNG test case that uses Spring to provide its data source. As a result the code is quite clean and concise.
However, I need to expand the test cases so they can …
