06 2021 档案

摘要:pom <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version></dependency> 阅读全文
posted @ 2021-06-16 10:55 liberalartsy 阅读(872) 评论(0) 推荐(0)
摘要:1.依赖 <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier></dependen 阅读全文
posted @ 2021-06-10 13:47 liberalartsy 阅读(600) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/cocoa_geforce/article/details/111029825 阅读全文
posted @ 2021-06-03 17:13 liberalartsy 阅读(31) 评论(0) 推荐(0)
摘要:centos 安装Yapi 前提:安装yapi需要 mongodb 和nodejs 安装nodejs 获取资源,安装高版本nodejs curl -sL https://rpm.nodesource.com/setup_8.x | bash - 安装nodejs yum install -y nod 阅读全文
posted @ 2021-06-02 10:53 liberalartsy 阅读(434) 评论(0) 推荐(0)
摘要:防火墙命令 打开防火墙:systemctl start firewalld 关闭防火墙:systemctl stop firewalld 查看防火墙状态:systemctl status firewalld 端口命令 查看端口占用情况 netstat -lnp|grep 8080 指定开放端口 fi 阅读全文
posted @ 2021-06-02 10:52 liberalartsy 阅读(67) 评论(0) 推荐(0)
摘要:1.检查SSH秘钥是否存在。右击git bash打开终端执行命令 :cat ~/.ssh/id_rsa.pub 2.如果不存在 则生成SSH 密钥 。在git bash上面执行命令 3.ssh-keygen -t rsa -C "liberalartsy@163.com" //后面是自己的邮箱 一路 阅读全文
posted @ 2021-06-02 10:51 liberalartsy 阅读(1249) 评论(0) 推荐(0)
摘要:1.使用ES的第一步,添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId></dependency> 阅读全文
posted @ 2021-06-02 10:50 liberalartsy 阅读(133) 评论(0) 推荐(0)
摘要:依赖: <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>sharding-jdbc-spring-boot-starter</artifactId> <version>4.0.0-RC2</version>< 阅读全文
posted @ 2021-06-02 10:49 liberalartsy 阅读(255) 评论(0) 推荐(0)
摘要:Springboot+rocketmq整合 1.加入rocketMq依赖 <dependency> <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-spring-boot-starter</artifactId> <versio 阅读全文
posted @ 2021-06-02 10:48 liberalartsy 阅读(186) 评论(0) 推荐(0)
摘要:第一步打开idea设置 ​ 第二步找到plugins搜索springAssistant安装Restart Ide即可 ​ 完美解决 阅读全文
posted @ 2021-06-02 10:47 liberalartsy 阅读(760) 评论(0) 推荐(0)
摘要:第一步:如下图 ​ 第二步:Rest_Type选择Soft,To_Conmit:默认为HEAD需要在末尾加上~1然后点击Reset即可,在查看本地就没有代码了 ​ 阅读全文
posted @ 2021-06-02 10:46 liberalartsy 阅读(361) 评论(0) 推荐(0)
摘要:1、MongoDB简介 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。 MongoDB是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的,它支持的数据结构非常松散,是类似json的bso 阅读全文
posted @ 2021-06-02 10:37 liberalartsy 阅读(189) 评论(0) 推荐(0)