On 22/07/2010 02:37, gilbertoca wrote: > > but when hitting the browser url, for example, > http://localhost:8080/secure/users.jsp click do nothing. > Switching to http://localhost:8080/secure/users.htm it works.
This is correct. By default ClickServlet handles requests with *.htm extensions[1]. Even if the template is a JSP, you still access the URL via .htm. Click will automatically check whether the template is a HTM or JSP and change the extension accordingly. What is the reason you want to access the url via *.jsp? Regards Bob [1]: http://click.apache.org/docs/user-guide/html/ch04.html#servlet-configuration
