会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
板凳哲学家
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
29
30
31
32
33
2022年2月19日
git的简单使用
摘要: 如果我们想从Git仓库中拉取一个分支到本地,此处假如远程分支为develop,本地要创建的分支为a1,可以使用以下命令: //初始化本地Git仓库 git init //将本地仓库和远程仓库相关联(https://aaa.git为远程分支的地址) git remote add origin http
阅读全文
posted @ 2022-02-19 07:36 板凳哲学家
阅读(78)
评论(0)
推荐(0)
2021年11月30日
idea整合mybatis实现简单分页
摘要: 数据库 mysql 5.6.17 pagehelper 1.2.10 jdk 1.8 最简单分页教 以上就是分页的效果图 下面是代码 CREATE TABLE `sys_log` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `operat
阅读全文
posted @ 2021-11-30 22:38 板凳哲学家
阅读(219)
评论(0)
推荐(0)
2021年9月25日
使用idea构建简单的熔断器hystrix
摘要: 引入父类的依赖 <?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-instance
阅读全文
posted @ 2021-09-25 00:30 板凳哲学家
阅读(168)
评论(0)
推荐(0)
2021年8月24日
idea构建简单前端token保存,获取,后端token获取
摘要: token的保存和获取,本次说的方法只是其中一种,案例简单,后续复杂性可自行优化 function checkForm() { var oUser = document.getElementById('user'); var oPswd = document.getElementById('pwd'
阅读全文
posted @ 2021-08-24 23:53 板凳哲学家
阅读(1282)
评论(0)
推荐(0)
2021年8月3日
idea构建简单的springcloud gateway
摘要: springcloud gateway的工程需要单独,不要使用父类的依赖 很简单的结构,简单使用这些就够了 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:
阅读全文
posted @ 2021-08-03 23:45 板凳哲学家
阅读(1228)
评论(0)
推荐(0)
2021年7月17日
linux服务器安全维护
摘要: last -10 查询登录成功的10条记录 last -d 查看登陆的记录 less /etc/passwd 查看是否有新增用户 netstat -ltnp 查看当前服务器的所有使用的端口,进程信息 设置普通用户,禁止root用户远程登录 【新建普通用户】新建的用户是xiaomi useradd -
阅读全文
posted @ 2021-07-17 17:21 板凳哲学家
阅读(188)
评论(0)
推荐(0)
2021年7月14日
使用idea创建springboot工程
摘要: 以上就完成了一个使用idea创建maven工程的过程 开始设置springboot的版本 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>
阅读全文
posted @ 2021-07-14 01:46 板凳哲学家
阅读(1314)
评论(0)
推荐(0)
2021年7月5日
搭建springcloud单机环境下的注册中心,服务提供者,服务消费者
摘要: 在本地环境搭建过程中出现的问题,jar的依赖找不到,建议去寻找存在的依赖,本地环境是jdk1.8,maven3.5.4,springcloud版本Finchley.RELEASE,springboot版本2.0.5.RELEASE,如果依据博客搭建显示依赖找不到,请根据springcloud找到合适
阅读全文
posted @ 2021-07-05 00:13 板凳哲学家
阅读(128)
评论(0)
推荐(0)
2021年6月16日
搭建eureka单机环境
摘要: <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </depende
阅读全文
posted @ 2021-06-16 23:14 板凳哲学家
阅读(150)
评论(0)
推荐(0)
2021年6月12日
搭建springcloud项目结构准备
摘要: groupId表示项目中包的名字 artifactId表示项目的名称 选择new window 选择enable auto-import(表示以后引入的依赖会自动导入) 以上就是如何创建项目 下面开始针对父工程和子工程的依赖如何进行更好的配置 <parent> <groupId>org.spring
阅读全文
posted @ 2021-06-12 11:56 板凳哲学家
阅读(711)
评论(0)
推荐(0)
上一页
1
···
29
30
31
32
33
公告