Spring security開発プリファレンス

30301 ワード

pom.xml

<!-- 시큐리티 관련 기능 https://mvnrepository.com/artifact/org.springframework.security/spring-security-web -->
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-web</artifactId>
			<version>5.2.10.RELEASE</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-config -->
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-config</artifactId>
			<version>5.2.10.RELEASE</version>
		</dependency>

		<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-core -->
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-core</artifactId>
			<version>5.2.10.RELEASE</version>
		</dependency>

		<!-- 시큐리티 기능 끝 https://mvnrepository.com/artifact/org.springframework.security/spring-security-taglibs -->
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-taglibs</artifactId>
			<version>5.2.10.RELEASE</version>
		</dependency>
書き留める.

web.xml

<!-- spring security web 설정 -->
     <filter-mapping>
           <filter-name>springSecurityFilterChain</filter-name>
           <servlet-name>org.springframework.web.filter.DelegatingFilterProxy</servlet-name>
     </filter-mapping>
     <filter-mapping>
           <filter-name>springSecurityFilterChain</filter-name>
           <servlet-name>/*</servlet-name>
     </filter-mapping>
書き留める.

root-context.xml



ネームスペースのセキュリティチェック
および.
<security:http>
		<security:form-login />
	</security:http>
	<security:authentication-manager></security:authentication-manager>
サーバの書き込みと実行
やるなら他の人はだめだ.
いずれにしても、このようにして終わったら

作成名はsecurity-contextxmlの生成
位置:
root-context.xmlと同じ場所で作成
次に
security-context.xmlを開く

ネームスペースのチェック後

security-context.xml

<?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/security http://www.springframework.org/schema/security/spring-security-5.2.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

	<security:http>
		<security:form-login />
	</security:http>
	<security:authentication-manager></security:authentication-manager>
</beans>
こうやってセキュリティ関連のラベルを書きます~
以上のコードは完全なコードです
注意すべき点は上のroot-contextです.xmlに書いてある<セキュリティ:http>とか
貼ったものを移すことです.
つまりroot-contextxmlにはセキュリティラベルがない必要があります.
security-context.xmlにはセキュリティラベルが必要です

root-context.xml

<?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:context="http://www.springframework.org/schema/context"
	xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:task="http://www.springframework.org/schema/task"
	xmlns:security="http://www.springframework.org/schema/security"
	xsi:schemaLocation="http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-5.2.xsd
		http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
		http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.3.xsd
		http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
	
	<!-- Root Context: defines shared resources visible to all other web components -->
		
		

	<!-- ======================================추가한 부분================================================= -->
	<context:component-scan base-package="org.conan.sample"></context:component-scan>
	<bean id="hikariConfig" class="com.zaxxer.hikari.HikariConfig">
		<property name="driverClassName"
		value="net.sf.log4jdbc.sql.jdbcapi.DriverSpy"></property>
		<property name="jdbcUrl" value="jdbc:log4jdbc:mysql://localhost:3306/scottdb?userSSL=false"></property>
		<property name="username" value="scott"></property>
		<property name="password" value="tiger"></property>
	</bean>
	
	<bean id="dataSource" class="com.zaxxer.hikari.HikariDataSource" destroy-method="close">
	<constructor-arg ref="hikariConfig"></constructor-arg>
	</bean>
	
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	
	<mybatis-spring:scan base-package="org.conan.persistence"/>
	<mybatis-spring:scan base-package="org.conan.mapper"/>
	
	<context:component-scan base-package="org.conan.task"></context:component-scan>
	<task:annotation-driven/>
	
	<context:component-scan base-package="org.conan.service"></context:component-scan>
	<context:component-scan base-package="org.conan.aop"></context:component-scan>
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
	
	<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	<tx:annotation-driven></tx:annotation-driven>
	
	<!-- ======================================추가한 부분================================================= -->
</beans>
これでセキュリティ関連コードがなくなります.
上の関連しないコードを無視
私はあなたにこのコードについて打たせたわけではありません.
そしてサーバーが开かないことを再确认!!!
セキュリティを使用可能