Как подключить Spring Security к файлу hibernate.cfg.xml - PullRequest
0 голосов
/ 13 июня 2019

Я новичок в Spring Security, здесь я не могу настроить Spring Security с файлом hibernate.cfg.xml.Так что любые предложения приветствуются.Заранее спасибо.

Мой 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> 
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...