2
votes
2answers
23 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 …
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 …
0
votes
1answer
11 views
multi-staged form using spring
hi all, please forgive me for this stupid questions. I just started developing web application using spring yesterday.
The project that i worked on, have a multi staged form, that …
0
votes
2answers
67 views
why is the springsource.com website built in drupal?
I was trying to learn a little about JAVA frameworks like Spring. I hit view source on springsource.com and it's totally Drupal (a PHP CMS).
What's up with that? You would think t …
0
votes
1answer
47 views
Exception thrown after processing onSubmitAction
Hi,
I am very new to Spring and I have a simpleFormController with 2 methods. referenceData() with is called when the page loads and onSubmitAction() which is called on the submi …
0
votes
2answers
110 views
one-to-many JPA annotations won’t delete orphans
Hello good people.
I 'm trying to build a user and a contact management project.
i have a lot of classes so will limit it to what are in concern here. i have a userAccount, userPro …
1
vote
2answers
59 views
SimpleFormController help
Hi,
I am very new to Spring and I have been given some basic instructions to move some code into a new project that uses Spring and I am having trouble with the SimpleFormControll …
0
votes
1answer
61 views
How can I create a typed Tuple2 from Java / Spring?
I want to be able to create a Tuple2 from spring config where I explicitly declare the types of my parameters:
<bean class="scala.Tuple2">
<constructor-arg index="0 …
0
votes
2answers
73 views
Database not dropped in between unit test
Hello good people i came accross a weird behaviour in my test.I'm using JPA hibernate annotation with spring.
let say i have an Class MyObject and it's property email is marqued
@ …
1
vote
1answer
29 views
Grails Packaging and Naming Conventions
Packaging Controllers, Services,etc. i.e.
- com.company.controllers
- com.company.services
Is this a good practice or should be avoided by all means??
Another worth mentioning p …
0
votes
2answers
86 views
Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file
I have a Java project connecting to an Ingres database and using the Spring Framework. This issue is related to the error codes list configuration.
According to Spring Framework A …
1
vote
1answer
47 views
What is the difference between putting @Autowired to a variable and a method ?
Class A {
private B instanceB;
@Autowired
public setInstanceB(B instanceB) {
this.instanceB = instanceB;
}
}
Above one versus this one.
Class A {
@Autowi …
1
vote
1answer
49 views
Spring SimpleUrlHandlerMapping not allowing routing for any html page
I'm trying to implement a file upload in my Spring application based on the Spring documentation. However, when I add the SimpleUrlHandlerMapping reference, I can't even route to …
3
votes
3answers
163 views
Spring AOP vs AspectJ
I am under the impression that Spring-AOP is best used for application specific tasks such as security, logging, transactions, etc. as it uses custom Java5 annotations as a framewo …
0
votes
1answer
129 views
How do I get the Session Object in Spring?
I am relatively new to Spring and Spring security.
I was attempting to write a program where I needed to authenticate a user at the server end using Spring security,
I came up wi …
