I am using Tile 2.2.1. when I put the scriplet out of tile tag then there is no problem.
<tiles:insertDefinition name="${_template}" flush="true">
<tiles:putAttribute name="content"...
Type: Posts; User: shahin; Keyword(s):
I am using Tile 2.2.1. when I put the scriplet out of tile tag then there is no problem.
<tiles:insertDefinition name="${_template}" flush="true">
<tiles:putAttribute name="content"...
I have the following scriptlet in a jsp file
<%
System.out.println( "Evaluating date now" );
java.util.Date date = new java.util.Date();
%>
Hello! The time is now <%= date %>
But I...
How can I add variable to the following ROLE list?
<intercept-url pattern="/admin/**" access="ROLE_ADMIN_${id},ROLE_TELLER,ROLE_CUSTOMER"/>
This didn't work. Any idea?
I am developing a new app with SpringSecurity. When I go to
http://localhost:8080/springapp/admin
SpringSecurity redirect me to
http://localhost:8080/springapp/admin/login2.jsp
but here I can...
Hi
when I'm using ShowPassword="true", I'v got this error:
"Attribute showpassword invalid for tag password according to TLD"
and I checked the TLD there is no attribute like showPassword.
...