简体   繁体   English

Spring Security XML配置找不到我的dataSource bean定义

[英]Spring Security XML configuration can not find my dataSource beans definition

My WEB-INF/web.xml does the following - 我的WEB-INF/web.xml执行以下操作-

1) Loads my servlet context - WEB-INF/spring-web-servlet.xml 1)加载我的servlet上下文WEB-INF/spring-web-servlet.xml

2) Loads my spring security config file - WEB-INF/spring-security.xml 2)加载我的spring安全配置文件WEB-INF/spring-security.xml

3) Adds a springSecurityFilterChain filter to intercept incoming URLs 3)添加springSecurityFilterChain过滤器以拦截传入的URL

web.xml

<!-- Load spring-web-service.xml Servlet Definition -->

<servlet>
  <servlet-name>spring-web</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
  <!-- Programmatically add the property sources for the current Spring Profile -->
  <init-param>
    <param-name>contextInitializerClasses</param-name>
    <param-value>com.galapagos.context.CustomEnvironmentApplicationContextInitializer</param-value>
  </init-param>
</servlet>

<servlet-mapping>
  <servlet-name>spring-web</servlet-name>
  <url-pattern>/</url-pattern>
</servlet-mapping>

<listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Loads Spring Security config file -->

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/spring-security.xml</param-value>
</context-param>

<!-- Spring Security - Intercept incoming requests for authentication -->

<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>

spring-web-servlet.xml

The servlet context is what actually defines my dataSource bean that connects to my DB (it also loads properties beforehand) servlet上下文实际上定义了连接到数据库的dataSource bean(它还会预先加载属性)

...

<!-- Load Properties -->

<beans:bean
  class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
</beans:bean>

<!-- Database / JDBC -->

<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
  <beans:property name="driverClassName" value="${jdbc.driverClassName}" />
  <beans:property name="url" value="${jdbc.url}" />
  <beans:property name="username" value="${jdbc.username}" />
  <beans:property name="password" value="${jdbc.password}" />
</beans:bean>

...

spring-security.xml

The issue is that the second file that web.xml calls out to (my WEB-INF/spring-security.xml file) also uses a database connection because it looks for roles and credentials stored in the DB 问题是web.xml调出的第二个文件(我的WEB-INF/spring-security.xml文件)也使用数据库连接,因为它查找存储在数据库中的角色和凭证

<http auto-config="true" use-expressions="true">
  <intercept-url pattern="/admin**" access="hasRole('ROLE_ADMIN')" />

  <!-- access denied page -->
  <access-denied-handler error-page="/403" />

  <form-login
    login-page="/login"
    default-target-url="/"
    authentication-failure-url="/login?error"
    username-parameter="email"
    password-parameter="password" />
  <logout logout-success-url="/login?logout"  />

  <!-- enable csrf protection -->
  <csrf/>
</http>

<!-- Select users and user_roles from database -->
<authentication-manager>
  <authentication-provider>
  <jdbc-user-service
    data-source-ref="dataSource"
    users-by-username-query="SELECT email, password FROM users WHERE email=?"
    authorities-by-username-query="SELECT email, role FROM user_roles WHERE email=?" />
  </authentication-provider>
</authentication-manager>

When running I get the error - 运行时出现错误-

Cannot resolve reference to bean 'dataSource' while setting bean property 'dataSource'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'dataSource' is defined

My best guess is because dataSource is defined in the first XML config ( WEB-INF/spring-web-servlet.xml ), it's not available for use in the latter ( WEB-INF/spring-security.xml ) 我最好的猜测是,因为dataSource是在第一个XML配置( WEB-INF/spring-web-servlet.xml )中定义的,因此无法在后一个XML配置( WEB-INF/spring-security.xml )中使用。

Is this right? 这是正确的吗?

And if so what's the best way to define a dataSource bean so that all the individual XML files can call it as needed? 如果是的话,定义dataSource bean的最佳方法是什么,以便所有单个XML文件都可以根据需要调用它? I assume I might add several other components that also require DB access at some point. 我假设我可能会添加一些其他组件,这些组件有时也需要数据库访问。

Thanks! 谢谢!

In web.xml try changing this 在web.xml中尝试更改此设置

contextConfigLocation /WEB-INF/spring-security.xml, WEB-INF/spring-web-servlet.xml This will help you. contextConfigLocation /WEB-INF/spring-security.xml,WEB-INF / spring-web-servlet.xml这将为您提供帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM