Hi,
I am new to Spring Security.
In our project, We are using Struts 2(controller),Spring(Integeration) and Hibernate(Data layer)
I tried to implement single user login (expire the user’s...
Type: Posts; User: jollyplay; Keyword(s):
Hi,
I am new to Spring Security.
In our project, We are using Struts 2(controller),Spring(Integeration) and Hibernate(Data layer)
I tried to implement single user login (expire the user’s...
Hi,
I am new to Spring Web Service. First time, I tried to create a Web Service using Spring Web Service. I am getting this exception.
(BeanCreationException: Error creating bean with name...
Hello
i have doubt on using Depency Injection in Action Class that extends SimpleFormController(or some other controller).
Imagine this is Action class
public Class LoginAction extends...
Hello
Thank you all for your suggestions. Still i did not get out from the display problem.
I used the following code
<c:forEach items="${requestScope.hospitalList}" var="id">
<c:out...
hello,
Thank you for providing the link. i got the idea.
<c:forEach items="${requestScope.attributeName}" var="attName">
<c:out value="${attName.prpertyname}"/><br/>
</c:forEach>
Thank...
Hello
In the action class, i put list object in a request scope. List object contains POJO objects.
List hospitalList = service.getHospital().
request.setAttribute("hospital",hospitalList);
...
hello
i got this same exception.
What my guess is, if we call the JSP directly then we get the exception like this.
As we call the jsp directly, the controller will not be called, so there...
Hello Colin Yates,
Thank you for the guidence. After configured contextListener, it is working now.
Thank you,
balachandar
Hello
i created login.jsp using Spring and JSTL Taglib. As i tried to open it, i am getting this error like
no ContextLoaderListener registered? ...
Hello Marten Deinum,
Thank you for your answer. As you said, some configuration problem.
I mistakenly configured as
<property "sucessView"><value>success.jsp</value></property>
instead of ...
Hello
i am new bie to Spring framework. i am trying to do validation for login page.
i am using SimpleFormControler as controller and Validator for validation.
The form jsp(login.jsp) is...