我的个人小站
实体类转字符串并自动转为下划线 实体类转字符串并自动转为下划线
String data; ObjectMapper objectMapper = new ObjectMapper(); objectMapper.setPropertyNamingStrategy(PropertyNamingStrate
2020-12-12
发送get和post请求 发送get和post请求
get请求# 地址 String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={id}&secret={
2020-12-12
定时任务 定时任务
参考:https://juejin.cn/post/6844903968292732941
2020-12-08
Jenkins复杂项目构建以及配置详解 Jenkins复杂项目构建以及配置详解
我们这里部署一个比较复杂的项目,这个项目涉及到数据库操作和图片上传,首先我们先创建一个dockerfile # 下载jdk8的最小系统 FROM openjdk:8-alpine # 指令工作路径 WORKDIR /xiaoyou/dd #
2020-12-07
简单自动化部署一个springboot项目 简单自动化部署一个springboot项目
参考:https://blog.csdn.net/weixin_44777669/article/details/110789051 首先我们先新建一个springboot项目然后上传到码云这里我已经上传好了,大家也可以用这个来测试:htt
2020-12-07
实验八 子程序设计和多模块程序设计 实验八 子程序设计和多模块程序设计
实验1https://wenku.baidu.com/view/a6c5c1384b73f242336c5fcc.html 实验2https://blog.csdn.net/ITlanyue/article/details/86708346
2020-12-06
实验七 循环程序设计 实验七 循环程序设计
实验1https://blog.csdn.net/qq_16184125/article/details/72575458? 这里我们输入71.exe,然后我们输入1这里显示1的ascill码的16进制为31。a的ascill码为61 实
2020-12-06
Vue-cil 使用webstorm的@路径无法识别问题 Vue-cil 使用webstorm的@路径无法识别问题
新建一个webpack.config.js然后加入下面的内容 module.exports = { resolve: { alias: { "@": require("path").resol
2020-12-06
常用正则 常用正则
判断邮箱是否合法const regExp = /\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/ return regExp.test(email) 判断电话号码是否合法const regExp =
2020-12-05
集成Skywalking插件(springboot项目上报探针) 集成Skywalking插件(springboot项目上报探针)
参考:https://github.com/apache/apisix/blob/master/doc/zh-cn/plugins/skywalking.md Spring boot 整合 SkyWalking首先我们到官网下载探针:htt
2020-12-05
简单负载均衡的使用 简单负载均衡的使用
我们直接使用postman来进行调试测试 请求地址:http://192.168.123.131:9080/apisix/admin/routes/1 注意自己的ip(最后面那个1是路由的) 请求头:X-API-KEY:edd1c9f034
2020-12-05
13 / 88