Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
身份验证失败:密码与spring security 3.2中的存储值不匹配_Spring_Spring Mvc_Authentication_Spring Security - Fatal编程技术网

身份验证失败:密码与spring security 3.2中的存储值不匹配

身份验证失败:密码与spring security 3.2中的存储值不匹配,spring,spring-mvc,authentication,spring-security,Spring,Spring Mvc,Authentication,Spring Security,我使用的是SpringSecurity3.2,我的代码是 <beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sprin

我使用的是SpringSecurity3.2,我的代码是

<beans:beans xmlns="http://www.springframework.org/schema/security"
 xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
 http://www.springframework.org/schema/security
 http://www.springframework.org/schema/security/spring-security-3.2.xsd">

 <http auto-config="true">
  <access-denied-handler error-page="/403page" />
  <intercept-url pattern="/user**" access="ROLE_USER" />
  <intercept-url pattern="/admin**" access="ROLE_ADMIN" />
  <form-login login-page='/login' username-parameter="username"
   password-parameter="password" default-target-url="/user"
   authentication-failure-url="/login?authfailed" />
  <logout logout-success-url="/login?logout" />
 </http>

 <!-- <authentication-manager> <authentication-provider> <user-service> <user 
  name="user" password="user@123" authorities="ROLE_ADMIN" /> </user-service> 
  </authentication-provider> </authentication-manager> -->

 <authentication-manager>
  <authentication-provider>
   <jdbc-user-service data-source-ref="dataSource"
    users-by-username-query="select username,password,enabled from qforma_users where username=?"
    authorities-by-username-query="select username, role from qforma_roles where username =?  " />
  </authentication-provider>
 </authentication-manager>

</beans:beans>

// and login.jsp page is 

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>Login Form | www.beingjavaguys.com</title>
</head>
<body>
 <center>




  <h2>Login Here</h2>


  <div style="text-align: center; padding: 30px;border: 1px solid green;width: 250px;">
   <form method="post" action="<c:url value='j_spring_security_check' />">

    <table>
     <tr>
      <td colspan="2" style="color: red">${message}</td>

     </tr>
     <tr>
      <td>User Name:</td>
      <td><input type="text" name="username" />
      </td>
     </tr>
     <tr>
      <td>Password:</td>
      <td><input type="password" name="password" />
      </td>
     </tr>
     <tr>
      <td> </td>
      <td><input type="submit" value="Login" />
      </td>

     </tr>
    </table>
   </form>
  </div>
 </center>
</body>
</html>

//并且login.jsp页面是
登录表格| www.beingjavaguys.com
在这里登录
${message}
用户名:
密码:
 
我得到的错误是

调试o.s.jdbc.datasource.DataSourceUtils-返回jdbc连接 到数据源 16:41:52.273[http-nio-8080-exec-7]调试o.s.s.a.d.DaoAuthenticationProvider-身份验证失败:密码 与存储值不匹配 16:41:52.273[http-nio-8080-exec-7]调试o.s.s.w.a.UsernamePasswordAuthenticationFilter-身份验证 请求失败: org.springframework.security.authentication.BadCredentialsException: 坏凭证 16:41:52.273[http-nio-8080-exec-7]调试o.s.s.w.a.UsernamePasswordAuthenticationFilter-更新 SecurityContextHolder包含空身份验证

请帮帮我

我给出了正确的用户名和密码,但仍然显示身份验证失败:
密码与存储值不匹配

//我已通过输入trim(密码)解决了实际使用的问题。我//使用postgres sql字符(100),它占用了所有空间,尽管我的密码长度为4个字符。
//I have solved the issue actually I have used by putting trim(password) .i //am using postgres sql character (100) and it was occupying all the spaces even //though my password length is 4 characters .
<authentication-manager>
  <authentication-provider>
   <jdbc-user-service data-source-ref="dataSource"
    users-by-username-query="select username,trim(password),enabled from qforma_users where username=?"
    authorities-by-username-query="select username, role from qforma_roles where username =?  " />
  </authentication-provider>
 </authentication-manager> 

您是否尝试调试
用户名密码身份验证过滤器
?我该怎么做。请让我知道……嗯。。。是否在此类中放置断点?