gpt4 book ai didi

java - SpringSecurity Autowiring 解决方法

转载 作者:行者123 更新时间:2023-11-29 03:54:35 26 4
gpt4 key购买 nike

很显然,@Autowired 不能在 UserDetailsS​​ervice 中工作

这是真的吗?如果没有,我如何在我的 UserDetailsS​​ervice 中 Autowiring ?

如果是这样,是否有任何解决方法?如何执行 hibernate 查询?

如果我将它放在应用程序上下文中并在任何其他类中使用,我在 AccountService 中绑定(bind)的 accountDao 工作正常。我在某处读到 Autowire 不起作用,因为 UserDetailsS​​ervice 超出了 spring 绑定(bind)的范围?并且解决方法是在 xml 中手动连接它。如果那是真的?它是如何工作的?

账户服务:

@Service
public class AccountService implements UserDetailsService {

@Autowired
AccountDao accountDao;

@Override
public UserDetails loadUserByUsername(String username)
throws UsernameNotFoundException, DataAccessException {

Account account = accountDao.getUser(username);
if (account == null)
throw new UsernameNotFoundException("No account found for '"
+ username + "'");

return account;
}

@SuppressWarnings("unused")
private GrantedAuthority[] getAuthorities(boolean isAdmin) {
List<GrantedAuthority> authList = new ArrayList<GrantedAuthority>(2);
authList.add(new GrantedAuthorityImpl("ROLE_USER"));
if (isAdmin) {
authList.add(new GrantedAuthorityImpl("ROLE_ADMIN"));
}
return authList.toArray(new GrantedAuthority[] {});
}

public void setAccountDao(AccountDao accountDao) {
this.accountDao = accountDao;
}

安全上下文

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:security="http://www.springframework.org/schema/security"
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.0.xsd">

<!-- This is where we configure Spring-Security -->
<security:http auto-config="true" use-expressions="true"
access-denied-page="/krams/auth/denied">

<security:intercept-url pattern="/" access="permitAll" />
<security:intercept-url pattern="/campaign/*"
access="hasRole('ROLE_ADMIN')" />
<!-- <security:intercept-url pattern="/city/*" access="hasRole('ROLE_ADMIN')"/> -->
<security:intercept-url pattern="/company/*"
access="hasRole('ROLE_ADMIN')" />
<security:intercept-url pattern="/krams/main/common"
access="hasRole('ROLE_USER')" />

<security:form-login login-page="/auth/login"
authentication-failure-url="/auth/login?error=true"
default-target-url="/home" />

<security:logout invalidate-session="true"
logout-success-url="/auth/login" logout-url="/auth/logout" />

</security:http>

<!-- Declare an authentication-manager to use a custom userDetailsService -->
<security:authentication-manager>
<security:authentication-provider
user-service-ref="customUserDetailsService">
<security:password-encoder ref="passwordEncoder" />
</security:authentication-provider>
</security:authentication-manager>

<!-- Use a Md5 encoder since the user's passwords are stored as Md5 in the
database -->
<bean
class="org.springframework.security.authentication.encoding.Md5PasswordEncoder"
id="passwordEncoder" />


<bean id="customUserDetailsService" class="com.groupdealclone.app.service.AccountService" />
<bean id="accountDao" class="com.groupdealclone.app.dao.JdbcAccountDao" />




</beans>

Web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/root-context.xml
/WEB-INF/spring/security-context.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!--
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
-->
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>


<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class>
org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
</filter-class>
</filter>

<welcome-file-list>
<welcome-file>
index.jsp
</welcome-file>
</welcome-file-list>

</web-app>

最佳答案

@AutowiredUserDetailsS​​ervice 实现中工作得很好。一定是其他地方出了问题:您注入(inject)的接口(interface)可能不在扫描包中,或者其他地方。

关于java - SpringSecurity Autowiring 解决方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7078225/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com