如何将Spring Security连接到hibernate.cfg.xml文件

时间:2019-06-13 12:13:19

标签: hibernate spring-mvc jsp spring-security

我是Spring Security的新手,在这里我无法使用hibernate.cfg.xml文件配置Spring Security。因此,欢迎提出任何建议。预先谢谢你。

我的 hibernate.cfg.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
   <session-factory>
      <!-- SQL Dialect -->
      <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
      <property name="connection.url">jdbc:mysql://localhost:3306/tracking</property>
      <property name="connection.user">root</property>
      <property name="connection.password">Thinkpad@123</property>
      <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
      <property name="hibernate.current_session_context_class">org.hibernate.context.internal.ThreadLocalSessionContext</property>
      <property name="hibernate.connection.pool_size">5</property>
      <property name="hibernate.show_sql">true</property>
      <property name="hibernate.format_sql">true</property>
      <property name="hibernate.hbm2ddl.auto">update</property>
      <mapping class="com.sample.Entity.Student" />
      <mapping class="com.sample.Entity.Employee" />
      <mapping class="com.sample.Entity.SignUp" />
   </session-factory>
</hibernate-configuration>

这是我的 spring-sercurity.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans" xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans             https://www.springframework.org/schema/beans/spring-beans-3.0.xsd             http://www.springframework.org/schema/security             https://www.springframework.org/schema/security/spring-security.xsd">
   <http>
      <intercept-url pattern="/**" access="hasRole('USER')" />
      <form-login />
      <logout />
   </http>
   <authentication-manager>
      <authentication-provider>
         <user-service>
            <user name="sagar" password="{noop}12345" authorities="ROLE_USER, ROLE_ADMIN" />
         </user-service>
      </authentication-provider>
   </authentication-manager>
</beans:beans> 

0 个答案:

没有答案