环境:nacos1.3.0
一、服务注册
1、pom:
移步spring官网https://spring.io,查看集成Nacos所需依赖
找到对应版本点击进入查看集成说明
然后再里面找到集成配置样例,这里只截一张,其他集成内容继续向下找
我的:
4.0.0
com.demo.nacos
nacos-service
1.0-SNAPSHOT
org.springframework.boot
spring-boot-starter-parent
2.0.4.RELEASE
1.8
3.7.0
3.0.1
UTF-8
UTF-8
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-dependencies
Finchley.RELEASE
com.alibaba.cloud
spring-cloud-alibaba-dependencies
2.1.0.RELEASE
org.springframework.cloud
spring-cloud-starter-alibaba-nacos-discovery
0.2.2.RELEASE
my-service
org.springframework.boot
spring-boot-maven-plugin
我这里注册到nacos使用com.alibaba.cloud会报错读取不到bootstrap,使用org.springframework.cloud就可以,暂未解决。
2、配置文件
(1)bootstrap:
bootstrap是springcloud衍生来的,推荐使用bootstrap。一般来说,是把application内容放到nacos配置中心配置,本地只用bootstrap连接到nacos而不用application配置。bootstrap优先于application执行。如果把nacos的配置放到application中去连接,那么远程nacos上的配置可能就读取不到了。
spring:
application:
name: my-service
cloud:
compatibility-verifier:
enabled: false
nacos:
#服务注册
discovery:
server-addr: xx.xx.xxx:8848
server:
port: 8899
servlet:
context-path: /myProvider
(2)application:
有认为,nacos配置中心配置内容必须写在bootstrap.yml文件中,如果写入application-*.yml或者application.yml中均不生效。其实使用application.properties也可以完成配置。我的:
spring.cloud.nacos.discovery.server-addr=xx.xx.xxx:8848
server.port=8877
server.servlet.context-path=/myProvider
spring.application.name=my-service
3、启动类
import com.alibaba.nacos.api.config.annotation.NacosConfigurationProperties;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class NacosServierStart {
public static void main(String args[]){
SpringApplication.run(NacosServierStart.class,args);
}
}
5、测试
启动
查看nacos也成功的注册了:
二、集中配置
获取集中配置第一步需要注册到nacos,所以建立在上面的基础上:
1、参数说明
1.1、dataId:
相当于nacos集中配置的文件名。在 Nacos Spring Cloud 中,DataId 的完整格式如下:
${prefix}-${spring.profiles.active}.${file-extension}
(1)prefix: 默认为 spring.application.name 的值,也可以通过配置项 spring.cloud.nacos.config.prefix来配置。
(2)spring.profiles.active: 即为当前环境对应的 profile, 注意:当 spring.profiles.active 为空时,对应的连接符 – 也将不存在, dataId 的拼接格式变成 p r e f i x . {prefix}.prefix.{file-extension}。如:
my-service-dev.properties
my-service-prod.properties
(3)file-exetension: 为配置内容的数据格式,可以通过配置项 spring.cloud.nacos.config.file-extension 来配置。如my-service.properties。
1.2、Group:
组相当于一个特定场景,组默认是DEFAULT_GROUP,如果使用默认的则不需要在项目中指定。
1.3、namespace(tenat):
相当于 第一层 互相隔离 每个命名空间下面有自己的组。命名空间默认是 public 可以添加 dev prod test 。
1.4、配置格式:
没用,只是增加一点颜色,方便编辑
2、集成方法与demo
(1)pom:
加上macos-config依赖
com.alibaba.cloud
spring-cloud-starter-alibaba-nacos-config
2.1.0.RELEASE
如我完整的pom:
4.0.0
com.demo.nacos
nacos-service
1.0-SNAPSHOT
org.springframework.boot
spring-boot-starter-parent
2.0.4.RELEASE
1.8
3.7.0
3.0.1
UTF-8
UTF-8
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-dependencies
Finchley.RELEASE
com.alibaba.cloud
spring-cloud-alibaba-dependencies
2.1.0.RELEASE
org.springframework.cloud
spring-cloud-starter-alibaba-nacos-discovery
0.2.2.RELEASE
com.alibaba.cloud
spring-cloud-starter-alibaba-nacos-config
2.1.0.RELEASE
my-service
org.springframework.boot
spring-boot-maven-plugin
(2)配置文件
bootstrap加上config配置连接,
spring:
application:
name: my-service
cloud:
compatibility-verifier:
enabled: false
nacos:
#服务注册
discovery:
server-addr: xx.xx.xxx:8848
#配置中心
config:
server-addr: xx.xx.xxx:8848
如我完整的:
spring:
application:
name: my-service
cloud:
compatibility-verifier:
enabled: false
nacos:
#服务注册
discovery:
server-addr: xx.xx.xxx:8848
#配置中心
config:
server-addr: xx.xx.xxx:8848
server:
port: 8877
servlet:
context-path: /myProvider
(3)启动类
无需改动
(4)业务代码:
import 服务器托管com.alibaba.nacos.api.config.annotation.NacosValue;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
@RestController
@RequestMapping("/test")
//刷新配置
@RefreshScope
public class TestController {
@Value("${user.text}")
private String userText;
@GetMapping("/getUserName")
public String getTemp(HttpServletRequest request) throws InterruptedException {
return userText;
}
}
3、测试
启动:
3.1、简单获取集中配置
(1)访问http://localhost:8877/myProvider/test/getUserName
(2)修改nacos上的配置
再次刷新浏览器可以看到获取到最新的配置了
3.2、指定组
同步修改bootstrap配置文件并重启代码:
再次刷新浏览器
3.3、指定环境
集中配置划分为dev、test、prod。新增几个配置
如dev的内容为
同步修改bootstrap配置文件并重启代码:
再次刷新浏览器:
3.4、本地配置覆盖远程
如我本地新增
此时获取的仍然是远程的
如果希望本地配置覆盖远程,需要在bootstrap配置文件中开启配置:
4、远程配置管理
一般只将固定的配置放在本地boostrap,其他配置都放到远程nacos集中配置上。如现在只将nacos的连接和获取集中配置放在本地,其他如端口号、数据库连接等信息放在集中配置上。
(1)pom添加依赖:
org.mybatis.spring.boot
mybatis-spring-boot-starter
1.3.2
mysql
mysql-connector-java
8.0.13
(2)启动类
@SpringBootApplication
@EnableDiscoveryClient
@MapperScan("com.demo.nacos.provider.mapper")
public class ProviderApplication {
public static void main(String[] args) {
SpringApplication.run(ProviderApplication.class, args);
}
}
(3)业务代码:
@Autowired
private UserDao userDao;
@RequestMapping("/getAllUsers")
public List getAllUsers(){
return userDao.getAllUsers();
}
SELECT
`NAME` userName,
ACCOUNT userAccount
FROM
t_user_new
(4)nacos集中配置:
server.port=1111
#server.servlet.context-path=/myProvider
user.text = wtyy分组下 prod生产环境 的值
#mybatis
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#spring.datasource.url=jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
#spring.datasource.password=wtyy
spring.datasource.url=jdbc:mysql://xxx.xx.xxx:3306/demo?useUnico服务器托管de=true&characterEncoding=utf-8&useSSL=false&allowMultiQueries=true
spring.datasource.password=xxxxxx
#mybatis
mybatis.mapper-locations=classpath*:mapper/*Mapper.xml
(5)本地配置
spring:
application:
name: my-service
cloud:
compatibility-verifier:
enabled: false
nacos:
#服务注册
discovery:
server-addr: xxx.xx.xxx:8848
#配置中心
config:
server-addr: xxx.xx.xxx:8848
group: wtyy
profiles:
active: prod
server:
servlet:
context-path: /myProvider
(6)测试:
启动后访问接口
这时把bootstrap改为dev环境,因为集中配置dev文件没有配置数据库信息,所以启动报错:
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
C++ 的标准模板库(STL)提供了丰富的容器类来帮助开发者管理和存储数据。下面我将介绍 C++ 中常用的 STL 容器,并且为每个容器提供一个简单的示例来说明其基本用法。 1. vector(向量) #include #include int main() …