Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户
Posted 小小工匠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户相关的知识,希望对你有一定的参考价值。
文章目录
StandAlone模式下的数据查看 (Derby)
这里我们以windos为例
温馨提示: 连接的时候,需要关闭nacos
我们搞nacos集群的时候,需要改成mysql记得不? 因为derby是每个实例独占的,无法共享数据,所以需要搞个外面的数据库
新增登录用户
nacos提供的默认登录名和密码 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服务,(记得断开derby的连接哈)登录一下
源码
https://github.com/yangshangwei/SpringCloudAlibabMaster
以上是关于Spring Cloud Alibaba - 20 Nacos StandAlone模式下的数据存储(Derby)及新增登录用户的主要内容,如果未能解决你的问题,请参考以下文章
Spring Cloud Alibaba全家桶——Spring Cloud Alibaba介绍
Spring Cloud Alibaba系列教程——Spring Cloud Alibaba开篇
spring boot 整合spring cloud alibaba