摘要: 使用VPN上网后,如果git下载速度还是很慢说明没有正确设置代理 查看你的代理模式是否是pac代理,如果是改成全局或者Http代理,pac代理会选择性的代理网站,可能会略过某些网站。 如果还是比较慢则手动设置代理,如下: 先查看代理软件代理地址然后做如下设置: 开启代理: git config -- 阅读全文
posted @ 2020-05-26 16:48 天涯屐痕 阅读(715) 评论(0) 推荐(0) 编辑
摘要: SSM整合(ForestBlog为例) 原版本github地址 :https://github.com/saysky/ForestBlog 文中版本地址:https://github.com/Yanshaoshuai/ForestBlog web.xml spring mvc.xml spring 阅读全文
posted @ 2020-05-23 21:11 天涯屐痕 阅读(444) 评论(0) 推荐(0) 编辑
摘要: MyBatis整合Spring 官方文档 http://mybatis.org/spring/zh/index.html 配置: https://mybatis.org/mybatis 3/zh/getting started.html 原生Mybatis使用 mybatis.xml配置文件 map 阅读全文
posted @ 2020-05-23 21:08 天涯屐痕 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Mybatis 原始方式 SqlMapConfig.xml+UserMapper.xml 查询 SqlMapConfig.xml UserMapper.xml 使用: 模糊查询: ${} 取值 用在Mapper.xml文件中表示值替换相当于字符串拼接sql 会造成sql注入,但在某些场景必须用它,比 阅读全文
posted @ 2020-05-23 21:07 天涯屐痕 阅读(211) 评论(0) 推荐(0) 编辑
摘要: Spring MVC 官方文档:https://docs.spring.io/spring/docs/5.3.0 SNAPSHOT/spring framework reference/web.html spring web MVC Model (javabean) View (jsp,freema 阅读全文
posted @ 2020-05-23 21:02 天涯屐痕 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Spring5 官方文档:https://docs.spring.io/spring/docs/5.3.0 SNAPSHOT/spring framework reference/index.html zip下载地址:https://repo.spring.io/release/org/spring 阅读全文
posted @ 2020-05-17 15:13 天涯屐痕 阅读(180) 评论(0) 推荐(1) 编辑
摘要: SpringBoot使用protobuf格式的接口 建立SpringBoot项目,pom.xml内容如下: 编写.proto文件,内容如下: user_login.proto: 生成java代码: 将生成的代码移动到你的项目中合适位置: 编写protobuf格式的Controller接口: 编写测试 阅读全文
posted @ 2020-01-03 17:32 天涯屐痕 阅读(3284) 评论(10) 推荐(0) 编辑
摘要: ProtoBuf初体验 ProtoBuf介绍 定义 protocol buffers 是一种语言无关、平台无关、可扩展的序列化结构数据的方法,它可用于(数据)通信协议、数据存储等。 与XML和JSON对比 1.序列化后体积相比Json和XML很小,适合网络传输 2.支持跨平台多语言 3.消息格式升级 阅读全文
posted @ 2019-12-31 17:18 天涯屐痕 阅读(259) 评论(0) 推荐(0) 编辑
摘要: LNMP/LAMP 环境: | 名称 | Linux | Nginx | MySQL | PHP | Apache | | : : | : : | : : | : : | : : | : : | | 版本 | Centos7 | nginx 1.14.1 | mysql 5.6.25 | php 5 阅读全文
posted @ 2019-12-26 17:56 天涯屐痕 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Otter远程调试 环境配置: | 机器 | 172.16.0.2 | 172.16.0.3 | 172.16.0.4 | | : : | : : | : : | : : | | ZK | FOLLOWER | FOLLOWER | LEADER | | MySQL | Manager MySQL 阅读全文
posted @ 2019-12-18 17:13 天涯屐痕 阅读(269) 评论(0) 推荐(0) 编辑