當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户
生活随笔
收集整理的這篇文章主要介紹了
Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
文章目錄
- StandAlone模式下的數(shù)據(jù)查看 (Derby)
- 新增登錄用戶
- 源碼
StandAlone模式下的數(shù)據(jù)查看 (Derby)
這里我們以windos為例
溫馨提示: 連接的時候,需要關(guān)閉nacos
我們搞nacos集群的時候,需要改成mysql記得不? 因?yàn)閐erby是每個實(shí)例獨(dú)占的,無法共享數(shù)據(jù),所以需要搞個外面的數(shù)據(jù)庫
新增登錄用戶
nacos提供的默認(rèn)登錄名和密碼 nacos /nacos , 頁面沒有入口可以新增登錄用戶。
想要加一個,怎么辦呢?
引入依賴
<!-- 給密碼加密使用 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-security</artifactId></dependency>寫個main方法 搞一搞
public class EncrPassword {public static void main(String[] args) {String encode = new BCryptPasswordEncoder().encode("urpassword");System.out.println(encode);} }添加后,啟動本地的nacos服務(wù),(記得斷開derby的連接哈)登錄一下
源碼
https://github.com/yangshangwei/SpringCloudAlibabMaster
總結(jié)
以上是生活随笔為你收集整理的Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Cloud Alibaba
- 下一篇: Spring Cloud Alibaba