I'm using automatic controller for a simple object. My object has a field "description". When I'm saving a new object I would like to validate that "description" is unique in my db. Where I should do...
Type: Posts; User: paramosyermos; Keyword(s):
I'm using automatic controller for a simple object. My object has a field "description". When I'm saving a new object I would like to validate that "description" is unique in my db. Where I should do...
I like to use custom getters to show full data. eg:
class Person {
String fisrtName;
String lastName;
// my custom getter
public String getFullName() {
...
Here is the HttpServletRequestWrapper
public class AcegiHttpServletRequestWrapper extends HttpServletRequestWrapper {
public AcegiHttpServletRequestWrapper(HttpServletRequest request)...
I've been trying to create an acegi secure context inside my WEB-INF directory, but there, the secure context doesn't work.
My directory structure is:
/WEB-INF/jsp/login.jsp...