The Spring Framework is an open source framework for application development on the Java platform. At it's core is rich support for component based architectures, and it currently has over a dozen highly integrated modules.
-1
votes
0answers
22 views
Creating a User Account System
I am in need of designing a user account system, basic things like user able to register and login, storing some basic info like name, email, phone number, address, etc. This "USER" table will then be ...
0
votes
1answer
3 views
How to attach javadoc with Maven from other repository?
I have spring framework dependencies in my Maven project. I want to attach the Javadoc for spring framework dependencies.
I added to pom.xml following lines
<repositories>
...
0
votes
0answers
12 views
Why do SessionAttributes get cleared on GET redirect?
For simplicity's sake, these code snippets will be shortened. The purpose of this is to take a GET parameter, set it on the session, and redirect back to the GET with the url parameter removed. ...
1
vote
1answer
8 views
Spring - JPA -m@Transactional not committing data in DB
I have seen many questions but all of their solution still not clear.
here is my set up
my Spring Context file
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
0
votes
0answers
4 views
replace one class in bean property list in spring
I am working in broadleaf which is based on spring-mvc.
there are 3-4 blCustomPersistenceHandlers bean definition in different xml file based on project module.
<bean ...
0
votes
0answers
6 views
ZK binder updating lists slow
For some time I have been working with ZK and now I have an application hosted in the cloud but this does not meet my performance expectations. My application uses ZK for the view, Hibernate for the ...
0
votes
0answers
4 views
Inject a parameter through deployment plan on weblogic 10.3 on application level
Weblogic (and many other application servers) allow injecting some setup value through deployment plan. The idea is to override some context param in application deployment files (like web.xml or ...
1
vote
0answers
17 views
Spring NamespaceHandler and multiple property placeholders
I'm doing as follows:
register a NamespaceHandler (with all spring.x files, the handler is properly located and invoked)
in the Parser registered by the namespace handler, I load an xml file ...
0
votes
1answer
12 views
Active Directory authentication through ssl as anonymous user
I'm able to authenticate Active Directory with a user configured for ContextSource lifetime using Spring-ldap. My Spring xml configuration looks lilke this:
<bean id="ldapTemplate" ...
0
votes
0answers
13 views
Spring. Error 400 during validation
Here is an issue I have been stuck into. Actually, I implemented all required features in order to get couple of my field validated, however I still get that 400 error. I even compared what I have ...
0
votes
1answer
10 views
Dependency Injection in JSR-303 ConstraintValidator
I have the same problem that the guy from this thread has.
More precisely I get the following error, when trying to inject a bean in my custom validator that implements CustomValidator interface ...
0
votes
0answers
10 views
how to authenticate a user in Ldap using password
package com.ecom.data.access.controller;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import javax.naming.Context;
import javax.naming.NamingEnumeration;
import ...
0
votes
0answers
9 views
How do I disable caching of JSP files when using Spring Tiles?
I'm using Spring Tiles. I have following as my config:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
0
votes
0answers
15 views
How to block Multiple Click in spring service class method?
The below is my requirement :
There is a table search result screen in which an user select object through checkbox and clicks on Done.
On click of Done it is calling one method from service class ...
0
votes
1answer
17 views
Invoke stored procedure using JPA (JpaDaoSupport) in java
I would like to know how to invoke/call a stored procedure in java using JPA API. We are extending our class to use JpaDaoSupport class. I have tried invoking Call/ begin stored proc method but its ...