- 博客(12)
- 收藏
- 关注
原创 Kafka入门
传统定义:分布式的基于模式的,主要用于大数据实时处理领域(埋点)新定义:开源的事件流平台,作为高性能的数据管道、流分析、数据集成和关键任务应用(不仅消息队列,还能在里面处理数据)发布/订阅:Topic。
2023-06-01 23:08:16 1177
原创 做LeetCode中用到的小知识
关于数组数组的长度和对象型容器长度nums.lenth;list.size();对数组进行升序排序int[] nums;Arrays.sort(nums);往一个装List的List里添加一个List的快捷写法:List<List<Integer>> list = new ArrayList<>();int[] nums;//添加list.add(new ArrayList<Integer>(Arrays.asList(nums[k]
2021-06-26 16:23:10 1234
转载 狂神说Java:Mybatis笔记
未完全掌握部分:使用Page Helper实现分页功能多对一一对多Mybatis的动态SQL可以防止Sql注入问题吗?
2021-06-22 15:29:05 128
原创 Git连接Gitee的环境配置及使用方法
环境配置1.新建仓库2.在Git中添加用户名和密码右键打开Git Bash Here设置用户名git config --global user.name “username”设置密码(邮箱)git config --global user.email useremail@qq.com使用如下命令查看是否创建成功git config --list3.Git生成SSH公钥ssh-keygen -t rsa -C *xxx@xx.com*在C:\Users\Admini
2021-04-22 19:46:18 14457 3
原创 SpringCloud:Feign负载均衡
Feign的使用0.创建新消费者为了不污染原有代码,我们创建一个新的Maven模块,取名为springcloud-consumer-dept-feign将原来springcloud-consumer-dept-feign的代码搬过来,但进行如下改动:1.将pom.xml文件中Ribbon依赖替换为Feign<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfei
2021-04-20 20:07:26 170
原创 SpringCloud:Ribbon负载均衡
在消费者服务上使用Ribbon1.导入Ribbon依赖 <!--导入Eureka和Ribbon--> <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client --> <dependency> <groupId>org.springframe
2021-04-19 21:32:36 83
原创 SpringCloud:Eureka服务注册与部署
Eureka注册中心服务1.新建服务模块在之前创建好的SpringCloud项目中,新建普通Maven模块,取名为springcloud-eureka-70012.导入依赖在该模块的pom.xml文件中导入如下依赖注意:该Eureka依赖已经停止维护 <!--导入Eureka包和热部署--> <dependencies> <!-- https://mvnrepository.com/artifact/org.springframewor
2021-04-19 16:25:06 267
原创 SpringCloud:Rest学习环境搭建
一、初期准备1.数据库准备新建DB01数据库,在该数据库中建立dept表并插入内容。2.项目准备新建Maven项目,取名为springcloud在pom.xml中添加依赖并进行设置<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc
2021-04-17 16:40:44 101
原创 SpringBoot整合Shiro
环境搭建1.新建SpringBoot项目在项目中勾选Web和Thymeleaf支持pom.xml中应有如下依赖,如果没有则导入<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactI
2021-04-14 19:39:31 226
转载 狂神SpringBoot集成SpringSecurity
环境搭建1.新建SpringBoot项目,在pom.xml中导入相应模块<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency&g
2021-04-13 20:38:18 290
原创 狂神SpringBoot整合Mybatis笔记
狂神SpringBoot整合Mybatis笔记新建SpringBoot项目,勾选中JDBC API和Mysql Driver1.在pom.xml中导入Mybatis整合包<!--springboot整合mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifa
2021-04-13 15:39:28 293
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人