• Dubbo入门案例


    1、Dubbo 处理流程

    节点说明: 

    节点角色名称
    Provider暴露服务的服务提供方
    Consumer调用远程服务的服务消费方
    Registry服务注册与发现的注册中心
    Monitor统计服务的调用次数和调用时间的监控中心
    Container服务运行容器 负责启动 加载 运行服务提供者

    调用关系说明:

    • 虚线:代表异步调用
    • 实线:代表同步访问
    • 蓝色虚线:是在启动时完成的功能
    • 红色虚线:是程序运行中执行的功能

    调用流程:

    1. 服务提供者在服务容器启动时,向注册中心注册自己提供的服务。
    2. 服务消费者在启动时,向注册中心订阅自己所需的服务。
    3. 注册中心返回服务提供者地址列表给消费者,如果有变更注册中心会基于长连接推送变更数据给消费者。
    4. 服务消费者从提供者地址列表中,基于软负载均衡算法选一台提供者进行调用;如果调用失败,则重新选择一台。
    5. 服务提供者和消费者,在内存中的调用次数和调用时间、定时每分钟发送给监控中心。

    2、入门案例介绍

            在Dubbo中所有的的服务调用都是基于接口去进行双方交互的。双方协定好Dubbo调用中的接口,提供者来提供实现类并且注册到注册中心上。调用方则只需要引入该接口,并且同样注册到相同的注册中心上(消费者)。即可利用注册中心来实现集群感知功能,之后消费者即可对提供者进行调用。

            我们所有的项目都是基于Maven去进行创建,这样相互在引用的时候只需要以依赖的形式进行展现就可以了。

      并且这里我们会通过maven的父工程来统一依赖的版本。

    程序实现分为以下几步骤:

    1. 建立maven工程 并且 创建API模块: 用于规范双方接口协定
    2. 提供provider模块,引入API模块,并且对其中的服务进行实现。将其注册到注册中心上,对外来统一提供服务。
    3. 提供consumer模块,引入API模块,并且引入与提供者相同的注册中心。再进行服务调用。

    3、开发过程

    项目结构如下

             定义了一个父模块demo-base,然后再下面创建了三个子模块。父工程的pom.xml中主要是对Duboo相关jar进行版本控制,这样子模块导入依赖时,就不需要指定版本了。

    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <modelVersion>4.0.0modelVersion>
    5. <groupId>com.lagougroupId>
    6. <artifactId>demo-baseartifactId>
    7. <packaging>pompackaging>
    8. <version>1.0-SNAPSHOTversion>
    9. <modules>
    10. <module>service-apimodule>
    11. <module>service-providermodule>
    12. <module>service-consumermodule>
    13. modules>
    14. <properties>
    15. <dubbo.version>2.7.3dubbo.version>
    16. properties>
    17. <dependencyManagement>
    18. <dependencies>
    19. <dependency>
    20. <groupId>org.apache.dubbogroupId>
    21. <artifactId>dubboartifactId>
    22. <version>${dubbo.version}version>
    23. dependency>
    24. <dependency>
    25. <groupId>org.apache.dubbogroupId>
    26. <artifactId>dubbo-commonartifactId>
    27. <version>${dubbo.version}version>
    28. dependency>
    29. <dependency>
    30. <groupId>org.apache.dubbogroupId>
    31. <artifactId>dubbo-registry-zookeeperartifactId>
    32. <version>${dubbo.version}version>
    33. dependency>
    34. <dependency>
    35. <groupId>org.apache.dubbogroupId>
    36. <artifactId>dubbo-registry-nacosartifactId>
    37. <version>${dubbo.version}version>
    38. dependency>
    39. <dependency>
    40. <groupId>org.apache.dubbogroupId>
    41. <artifactId>dubbo-rpc-dubboartifactId>
    42. <version>${dubbo.version}version>
    43. dependency>
    44. <dependency>
    45. <groupId>org.apache.dubbogroupId>
    46. <artifactId>dubbo-remoting-netty4artifactId>
    47. <version>${dubbo.version}version>
    48. dependency>
    49. <dependency>
    50. <groupId>org.apache.dubbogroupId>
    51. <artifactId>dubbo-serialization-hessian2artifactId>
    52. <version>${dubbo.version}version>
    53. dependency>
    54. dependencies>
    55. dependencyManagement>
    56. <dependencies>
    57. <dependency>
    58. <groupId>log4jgroupId>
    59. <artifactId>log4jartifactId>
    60. <version>1.2.16version>
    61. dependency>
    62. <dependency>
    63. <groupId>org.slf4jgroupId>
    64. <artifactId>slf4j-apiartifactId>
    65. <version>1.7.5version>
    66. dependency>
    67. <dependency>
    68. <groupId>org.slf4jgroupId>
    69. <artifactId>slf4j-log4j12artifactId>
    70. <version>1.7.5version>
    71. dependency>
    72. <dependency>
    73. <groupId>com.alibabagroupId>
    74. <artifactId>fastjsonartifactId>
    75. <version>1.2.62version>
    76. dependency>
    77. dependencies>
    78. <build>
    79. <plugins>
    80. <plugin>
    81. <groupId>org.apache.maven.pluginsgroupId>
    82. <artifactId>maven-compiler-pluginartifactId>
    83. <version>3.5.1version>
    84. <configuration>
    85. <source>11source>
    86. <target>11target>
    87. configuration>
    88. plugin>
    89. plugins>
    90. build>
    91. project>

    3.1、创建service-api模块

      这个模块的作用提供一个接口,供生产者使用。(pom.xm中没有导入依赖,故省略)

    1. package com.lagou.service;
    2. public interface HelloService {
    3. String sayHello(String name);
    4. }

    3.2、创建service-provider模块

      这个模块作用是实现上面中的接口,然后借助于zookeeper暴露服务,供其消费者远程调用

     注:这个模块必须导入service-api模块,不然无法实现其接口

    (1)pom.xml

    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <parent>
    5. <artifactId>demo-baseartifactId>
    6. <groupId>com.lagougroupId>
    7. <version>1.0-SNAPSHOTversion>
    8. parent>
    9. <modelVersion>4.0.0modelVersion>
    10. <artifactId>service-providerartifactId>
    11. <dependencies>
    12. <dependency>
    13. <groupId>com.lagougroupId>
    14. <artifactId>service-apiartifactId>
    15. <version>1.0-SNAPSHOTversion>
    16. dependency>
    17. <dependency>
    18. <groupId>org.apache.dubbogroupId>
    19. <artifactId>dubboartifactId>
    20. dependency>
    21. <dependency>
    22. <groupId>org.apache.dubbogroupId>
    23. <artifactId>dubbo-registry-zookeeperartifactId>
    24. dependency>
    25. <dependency>
    26. <groupId>org.apache.dubbogroupId>
    27. <artifactId>dubbo-rpc-dubboartifactId>
    28. dependency>
    29. <dependency>
    30. <groupId>org.apache.dubbogroupId>
    31. <artifactId>dubbo-remoting-netty4artifactId>
    32. dependency>
    33. <dependency>
    34. <groupId>org.apache.dubbogroupId>
    35. <artifactId>dubbo-serialization-hessian2artifactId>
    36. dependency>
    37. dependencies>
    38. <build>
    39. <plugins>
    40. <plugin>
    41. <groupId>org.apache.maven.pluginsgroupId>
    42. <artifactId>maven-compiler-pluginartifactId>
    43. <version>3.5.1version>
    44. <configuration>
    45. <source>11source>
    46. <target>11target>
    47. configuration>
    48. plugin>
    49. plugins>
    50. build>
    51. project>

    (2)编写实现类。注意这里也使用了Dubbo中的@Service 注解来声明他是一个服务的提供者。

    1. package com.lagou.service.impl;
    2. import com.lagou.service.HelloService;
    3. import org.apache.dubbo.config.annotation.Service;
    4. @Service // 使用Duboo中的service注解声明服务提供者
    5. public class HelloServiceImpl implements HelloService {
    6. @Override
    7. public String sayHello(String name) {
    8. return "hello:"+name;
    9. }
    10. }

    (3)编写配置文件,用于配置dubbo。比如这里我就叫dubbo-provider.properties ,放入到resources 目录下。

    1. dubbo.application.name=dubbo-provider
    2. dubbo.protocol.name=dubbo
    3. dubbo.protocol.port=20880
    • dubbo.application.name: 当前提供者的名称
    • dubbo.protocol.name: 对外提供的时候使用的协议
    • dubbo.protocol.port: 该服务对外暴露的端口是什么,在消费者使用时,则会使用这个端口并且使用指定的协议与提供者建立连接。

    (4)编写启动的main 函数。这里面做的比较简单,主要要注意注解方式中的注册中心这里是使用的本机2181端口来作为注册中心。

    1. package com.lagou;
    2. import org.apache.dubbo.config.RegistryConfig;
    3. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
    4. import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    5. import org.springframework.context.annotation.Bean;
    6. import org.springframework.context.annotation.Configuration;
    7. import org.springframework.context.annotation.PropertySource;
    8. import java.io.IOException;
    9. public class DubboPureMain {
    10. public static void main(String[] args) throws IOException {
    11. AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ProviderConfiguration.class);
    12. context.start();
    13. System.in.read();
    14. }
    15. @Configuration
    16. @EnableDubbo(scanBasePackages = "com.lagou.service.impl")
    17. @PropertySource("classpath:/dubbo-provider.properties")
    18. static class ProviderConfiguration {
    19. @Bean
    20. public RegistryConfig registryConfig() {
    21. RegistryConfig config = new RegistryConfig();
    22. config.setAddress("zookeeper://127.0.0.1:2181");
    23. return config;
    24. }
    25. }
    26. }

    注意:在运行代码前,一定要确保,zookeeper服务已经启动了。还有如果运行时,报错提示zookeeper not connected ,可能会是zookeeper的超时时间设置过短,需要在配置文件去设置。还有可能是各个jar版本的问题,反正这个版本,我尝试过没有问题。控制台出现 log4j的爆红提示,是因为没有添加log4j.properties配置文件,添加上就可以了。

    1. log4j.rootCategory=INFO,CONSOLE
    2. log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
    3. log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
    4. log4j.appender.CONSOLE.layout.ConversionPattern=%d{HH:mm:ss.SSS} [%t] %-5p %c.%M\(%F:%L\) - %m%n

    3.3、创建service-consumer模块

      此模块作用是消费生产者暴露的服务,说人话就是,调用生产者暴露出来的的方法。

    (1)pom.xml

    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <parent>
    5. <artifactId>demo-baseartifactId>
    6. <groupId>com.lagougroupId>
    7. <version>1.0-SNAPSHOTversion>
    8. parent>
    9. <modelVersion>4.0.0modelVersion>
    10. <artifactId>service-consumerartifactId>
    11. <dependencies>
    12. <dependency>
    13. <groupId>com.lagougroupId>
    14. <artifactId>service-apiartifactId>
    15. <version>1.0-SNAPSHOTversion>
    16. dependency>
    17. <dependency>
    18. <groupId>org.apache.dubbogroupId>
    19. <artifactId>dubboartifactId>
    20. dependency>
    21. <dependency>
    22. <groupId>org.apache.dubbogroupId>
    23. <artifactId>dubbo-registry-zookeeperartifactId>
    24. dependency>
    25. <dependency>
    26. <groupId>org.apache.dubbogroupId>
    27. <artifactId>dubbo-rpc-dubboartifactId>
    28. dependency>
    29. <dependency>
    30. <groupId>org.apache.dubbogroupId>
    31. <artifactId>dubbo-remoting-netty4artifactId>
    32. dependency>
    33. <dependency>
    34. <groupId>org.apache.dubbogroupId>
    35. <artifactId>dubbo-serialization-hessian2artifactId>
    36. dependency>
    37. dependencies>
    38. <build>
    39. <plugins>
    40. <plugin>
    41. <groupId>org.apache.maven.pluginsgroupId>
    42. <artifactId>maven-compiler-pluginartifactId>
    43. <version>3.5.1version>
    44. <configuration>
    45. <source>11source>
    46. <target>11target>
    47. configuration>
    48. plugin>
    49. plugins>
    50. build>
    51. project>

    (2)编写服务,用于真实的引用dubbo接口并使用。因为这里是示例,所以比较简单一些。这里面@Reference 中所指向的就是真实的第三方服务接口。

    1. package com.lagou.bean;
    2. import com.lagou.service.HelloService;
    3. import org.apache.dubbo.config.annotation.Reference;
    4. import org.springframework.stereotype.Component;
    5. @Component
    6. public class ConsumerComponent {
    7. @Reference
    8. // 引用dubbo,远程调用方法
    9. private HelloService helloService;
    10. public String sayHello(String name) {
    11. return helloService.sayHello(name);
    12. }
    13. }

    (3)编写消费者的配置文件。这里比较简单,主要就是指定了当前消费者的名称和注册中心的位置。通过这个注册中心地址,消费者就会注册到这里并且也可以根据这个注册中心找到真正的提供者列表。

    1. dubbo.application.name=service-consumer
    2. dubbo.registry.address=zookeeper://127.0.0.1:2181
    3. dubbo.application.qosEnable=true
    4. dubbo.application.qosPort=33333
    5. dubbo.application.qosAcceptForeignIp=false

    (4)编写启动类,这其中就会当用户在控制台输入了一次换行后,则会发起一次请求。

    1. package com.lagou;
    2. import com.lagou.bean.ConsumerComponent;
    3. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
    4. import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    5. import org.springframework.context.annotation.ComponentScan;
    6. import org.springframework.context.annotation.Configuration;
    7. import org.springframework.context.annotation.PropertySource;
    8. import java.io.IOException;
    9. public class AnnotationConsumerMain {
    10. public static void main(String[] args) throws IOException {
    11. AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ConsumerConfiguration.class);
    12. context.start();
    13. // 获取消费者组件
    14. ConsumerComponent service = context.getBean(ConsumerComponent.class);
    15. while (true) {
    16. System.in.read();
    17. String result = service.sayHello("张三");
    18. System.out.println("result:"+result);
    19. }
    20. }
    21. @Configuration
    22. @PropertySource("classpath:/dubbo-consumer.properties")
    23. @ComponentScan(basePackages = "com.lagou.bean")
    24. @EnableDubbo
    25. static class ConsumerConfiguration {
    26. }
    27. }

    至此,配置远程调用服务完成。

    4、配置方式介绍

    下面我们来使用不同的方式来对Dubbo进行配置。每种配置方式各有不同,一般可以分为以下几个

    • 注解: 基于注解可以快速的将程序配置,无需多余的配置信息,包含提供者和消费者。但是这种方式有一个弊端,有些时候配置信息并不是特别好找,无法快速定位。(上面案例就是注解方式)
    • XML: 一般这种方式我们会和Spring做结合,相关的Service和Reference均使用Spring集成后的。通过这样的方式可以很方便的通过几个文件进行管理整个集群配置。可以快速定位也可以快速更改。
    • 基于代码方式: 基于代码方式的对上述配置进行配置。这个使用的比较少,这种方式更适用于自己公司对其框架与Dubbo做深度集成时才会使用。

    5、XML方式

            我们一般XML会结合Spring应用去进行使用,将Service的注册和引用方式都交给Spring去管理。下面我们还是针对于上面的demo进行实现。

            这里我们针对于api模块不做处理,还是使用原先的接口。从提供者和消费者做讲解。这了我们直接通过spring的方式去做讲解。

    5.1、provider模块

    (1)pom.xml

    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <parent>
    5. <artifactId>demo-base-xmlartifactId>
    6. <groupId>com.lagougroupId>
    7. <version>1.0-SNAPSHOTversion>
    8. parent>
    9. <modelVersion>4.0.0modelVersion>
    10. <artifactId>service-providerartifactId>
    11. <dependencies>
    12. <dependency>
    13. <groupId>com.lagougroupId>
    14. <artifactId>service-apiartifactId>
    15. <version>1.0-SNAPSHOTversion>
    16. dependency>
    17. <dependency>
    18. <groupId>org.apache.dubbogroupId>
    19. <artifactId>dubboartifactId>
    20. dependency>
    21. <dependency>
    22. <groupId>org.apache.dubbogroupId>
    23. <artifactId>dubbo-registry-zookeeperartifactId>
    24. dependency>
    25. <dependency>
    26. <groupId>org.apache.dubbogroupId>
    27. <artifactId>dubbo-registry-nacosartifactId>
    28. dependency>
    29. <dependency>
    30. <groupId>org.apache.dubbogroupId>
    31. <artifactId>dubbo-rpc-dubboartifactId>
    32. dependency>
    33. <dependency>
    34. <groupId>org.apache.dubbogroupId>
    35. <artifactId>dubbo-remoting-netty4artifactId>
    36. dependency>
    37. <dependency>
    38. <groupId>org.apache.dubbogroupId>
    39. <artifactId>dubbo-serialization-hessian2artifactId>
    40. dependency>
    41. <dependency>
    42. <groupId>org.apache.dubbogroupId>
    43. <artifactId>dubbo-config-springartifactId>
    44. <version>2.7.3version>
    45. dependency>
    46. dependencies>
    47. <properties>
    48. <maven.compiler.source>11maven.compiler.source>
    49. <maven.compiler.target>11maven.compiler.target>
    50. properties>
    51. project>

    注意这个xml中比使用注解方式的方式,要多导入一个依赖:

    
        org.apache.dubbo
        dubbo-config-spring
        2.7.3
    

    (2)编写实现类,不需要引入任何的注解配置。

    1. package com.lagou.service.impl;
    2. import com.lagou.service.HelloService;
    3. public class HelloServiceImpl implements HelloService {
    4. @Override
    5. public String sayHello(String name) {
    6. return "hello: " + name;
    7. }
    8. }

    (3)编写dubbo-provider.xml 文件,用于对dubbo进行文件统一配置。并且对刚才的配置进行引入。

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd">
    5. <dubbo:application name="service-provider2"/>
    6. <dubbo:registry address="zookeeper://127.0.0.1:2181" id="r1" timeout="10000"/>
    7. <dubbo:protocol name="dubbo" port="20883" />
    8. <dubbo:service interface="com.lagou.service.HelloService" ref="helloService" />
    9. <bean id="helloService" class="com.lagou.service.impl.HelloServiceImpl" />
    10. beans>

    (4)编写模块启动类。

    1. package com.lagou;
    2. import org.springframework.context.support.ClassPathXmlApplicationContext;
    3. public class ProviderApplication {
    4. public static void main(String[] args) throws Exception {
    5. ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:dubbo-provider.xml");
    6. applicationContext.start();
    7. System.in.read();
    8. }
    9. }

    5.2、consumer模块

    (1)pom.xml

    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <parent>
    5. <artifactId>demo-base-xmlartifactId>
    6. <groupId>com.lagougroupId>
    7. <version>1.0-SNAPSHOTversion>
    8. parent>
    9. <modelVersion>4.0.0modelVersion>
    10. <artifactId>service-consumerartifactId>
    11. <dependencies>
    12. <dependency>
    13. <groupId>com.lagougroupId>
    14. <artifactId>service-apiartifactId>
    15. <version>1.0-SNAPSHOTversion>
    16. dependency>
    17. <dependency>
    18. <groupId>org.apache.dubbogroupId>
    19. <artifactId>dubboartifactId>
    20. dependency>
    21. <dependency>
    22. <groupId>org.apache.dubbogroupId>
    23. <artifactId>dubbo-registry-zookeeperartifactId>
    24. dependency>
    25. <dependency>
    26. <groupId>org.apache.dubbogroupId>
    27. <artifactId>dubbo-registry-nacosartifactId>
    28. dependency>
    29. <dependency>
    30. <groupId>org.apache.dubbogroupId>
    31. <artifactId>dubbo-rpc-dubboartifactId>
    32. dependency>
    33. <dependency>
    34. <groupId>org.apache.dubbogroupId>
    35. <artifactId>dubbo-remoting-netty4artifactId>
    36. dependency>
    37. <dependency>
    38. <groupId>org.apache.dubbogroupId>
    39. <artifactId>dubbo-serialization-hessian2artifactId>
    40. dependency>
    41. <dependency>
    42. <groupId>org.apache.dubbogroupId>
    43. <artifactId>dubbo-config-springartifactId>
    44. <version>2.7.3version>
    45. dependency>
    46. dependencies>
    47. <properties>
    48. <maven.compiler.source>11maven.compiler.source>
    49. <maven.compiler.target>11maven.compiler.target>
    50. properties>
    51. project>

    (2)定义spring的配置xml

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd">
    5. <dubbo:application name="service-consumer"/>
    6. <dubbo:registry address="zookeeper://127.0.0.1:2181" timeout="10000"/>
    7. <dubbo:reference id="helloService" interface="com.lagou.service.HelloService" timeout="4000" retries="2" />
    8. beans>

    (3)引入启动模块。因为引用了Spring框架,所以再上一步的helloService会被当做一个bean注入到真实的环境中。在我们生产级别使用的时候,我们可以通过Spring中的包扫描机制,通过@Autowired 这种机制来进行依赖注入。

    1. package com.lagou;
    2. import com.lagou.service.HelloService;
    3. import org.springframework.context.support.ClassPathXmlApplicationContext;
    4. public class ConsumerApplication {
    5. public static void main(String[] args) throws Exception {
    6. ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:dubbo-comsumer.xml");
    7. // applicationContext.start(); 可以不启动,也能获取bean
    8. HelloService helloService = applicationContext.getBean("helloService", HelloService.class);
    9. System.in.read();
    10. String result = helloService.sayHello("world");
    11. System.out.println("result=" + result);
    12. }
    13. }
  • 相关阅读:
    网络安全涉及哪些方面?
    没有机会就创造机会
    python科研作图
    U-net网络学习记录
    学习记忆——图像篇——图像记忆
    Spring Security基于jwt实现权限校验
    【面试题】——JavaIO篇(23题)
    关于HTTP模块访问之后响应网页
    css案例15——复选框样式修改(复选框变为圆角)
    MyBatis:3_增删查改
  • 原文地址:https://blog.csdn.net/weixin_52851967/article/details/126314619