中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在springcloud中配置用戶名和密碼?

發布時間:2020-05-26 15:45:03 來源:億速云 閱讀:773 作者:鴿子 欄目:編程語言

1. pom.xml 加入依賴

	
		<!-- 加入密碼認證 -->
		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>

2. application.properties 配置如下 用戶名和密碼

#開啟安全認證 用戶名和密碼spring.security.basic.enabled=truespring.security.user.name=adminspring.security.user.password=root

3. 加入配置類 WebSecurityConfig.java

package org.fh.config;import org.springframework.security.config.annotation.web.builders.HttpSecurity;import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;/**
 * 說明:CSRF保護禁用
 * 作者:www.1b23.com
 */@EnableWebSecuritypublic class WebSecurityConfig extends WebSecurityConfigurerAdapter {	
    @Override
    protected void configure(HttpSecurity http) throws Exception {
    	
    	SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
		successHandler.setTargetUrlParameter("redirectTo");

		http.headers().frameOptions().disable();
    	
    	http.csrf().disable().authorizeRequests().antMatchers("/actuator/**").permitAll().anyRequest().authenticated().and().httpBasic();
    }
}

 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沁源县| 康平县| 苏尼特右旗| 西宁市| 太保市| 株洲市| 汪清县| 商洛市| 赤峰市| 偃师市| 安宁市| 同江市| 云安县| 德令哈市| 安平县| 汕尾市| 松江区| 湖北省| 黄平县| 台中县| 棋牌| 兰溪市| 泉州市| 二连浩特市| 北海市| 罗江县| 锦屏县| 松滋市| 霍邱县| 朝阳区| 楚雄市| 梅州市| 房产| 德阳市| 沁阳市| 宜兰市| 柘荣县| 昆明市| 淳安县| 怀集县| 兴业县|