1、application.properties文件

修改之前
### If turn on auth system:nacos.core.auth.enabled=false### The default token (Base64 String):nacos.core.auth.plugin.nacos.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789
修改之后
### If turn on auth system:nacos.core.auth.system.type=nacosnacos.core.auth.enabled=true### The default token (Base64 String):nacos.core.auth.plugin.nacos.token.secret.key=推荐将配置项设置为Base64编码的字符串,且原始密钥长度不得低于32字符

2、增加项目中nacos注册服务的验证信息

增加用户及密码:

spring.cloud.nacos.discovery.username=nacosspring.cloud.nacos.discovery.password=nacos