I turned on spring security debug logging and I got answer. I was sending GET request and only POST is supported. It it works perfectly now.
You where right. Thank you.
Type: Posts; User: nikolafon; Keyword(s):
I turned on spring security debug logging and I got answer. I was sending GET request and only POST is supported. It it works perfectly now.
You where right. Thank you.
Well I'm trying to configure basic scenario to login. I have standard spring login page. I submit login information to j_spring_security_check. No errors in console, and I've always been redirected...
This is my configuration
<http use-expressions="true" auto-config="false">
<intercept-url pattern="/login" access="permitAll" />
<intercept-url pattern="/resources/**" filters="none" />...
@ModelAttribute("model")
public UserSearchModel getUserSearchModel() {
final UserSearchModel detailedModel = new UserSearchModel();
final StringMultiFieldSearchCriterion criterion = new...
Hi to all.
Do anybody knows how to show info message or any other than error message to the user using MessageBuilder. I'm able to show only error message.
Example:
MessageBuilder builder = new...