1
vote
1answer
21 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 …
0
votes
0answers
13 views
Jasypt not working with Spring configuration
I am trying to use Jasypt to decrypt the password in my JDBC configuration file. I am using Java 6 with Spring 2.5.6. I am using the Spring examples here to guide me: http://www.ja …
1
vote
1answer
42 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 …
0
votes
2answers
41 views
+100
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 …
3
votes
3answers
129 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
83 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 …
0
votes
4answers
47 views
Is it possible to send more data in form based authentication in Spring?
I am relatively new to the Spring Framework and Spring security.
I have used a custom authentication scheme, HTML:
<form action="j_spring_security_check">
<input typ …
0
votes
0answers
28 views
Spring security 2.0.5. custom login form. Cannot see errors in language other than English.
Hello,
I've got my Spring Security custom login form working. It displays errors if the user has input bad credentials, or is expired, etc.
Looking inside spring-security-core-2. …
1
vote
2answers
63 views
Howcan I get started with Spring Batch?
I'm trying to learn Spring Batch, but the startup guide is very confusing. Comments like
You can get a pretty good idea about
how to set up a job by examining the
unit te …
0
votes
0answers
14 views
Is it possible to bind a whole class in spring?
Hi,I use spring web flow 2 with hibernate annotations. Is there possible that in my jsp using form tags to bind a whole class? I am asking this, because when I generated my entity …
5
votes
3answers
164 views
How to log the time taken by methods in Springframework?
Is it possible in springframework to log the time taken by methods [ selective | all ] automatically. By automatically i mean, i don't want to go to each method and write the log.d …
0
votes
2answers
43 views
Choosing between Impala and OSGi
I've been investigating OSGi for my company's software, but have recently been recommended to take a look at Impala. According to its web page, Impala is "a dynamic module framewor …
1
vote
2answers
48 views
How to implement the Strategy Pattern in AOP
Can anyone tell me how to implement the Strategy Pattern in AOP?
An example using Spring-AOP or AspectJ would be very helpful.
1
vote
3answers
56 views
How to implement Abstract Factory pattern in Spring-AOP?
Is implementing the Abstract Factory pattern for a spring-based project with AOP should be any different than in a normal project?
0
votes
0answers
15 views
Using @PostConstruct annotation in Spring 3.0.0.RC1
I am using @PostConstruct annotation (to mark init method in a bean) in Spring version 3.0.0.RC1. I start this web application in Jetty and get the following exception:
java.lang. …
