摘要: 1,状态静态常量 package com.mangoubiubiu.commonutils; public interface ResultCode { //成功 public static Integer SUCCESS=20000; //失败 public static Integer ERRO 阅读全文
posted @ 2020-09-24 23:26 KwFruit 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 测试demo:Spring+SpringMvc+Mybatis-Plus+SpringBoot+RESTful风格Api +Maven 1,引入依赖 <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>spr 阅读全文
posted @ 2020-09-24 23:17 KwFruit 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 最近公司项目中要用到树形组件,开始用的layui,后来发现layui的树形组件不支持异步加载,在网上查发现实现起来很复杂。而公司项目中也有ztree的css,js,于是就选择了ztree。 先来个普通的,总结分4步(引入js,css就不说了) 1,在body里给个实体 <ui id="tree" c 阅读全文
posted @ 2020-09-17 23:21 KwFruit 阅读(911) 评论(0) 推荐(0) 编辑
摘要: 1,项目地址:https://github.com/zxing/zxing 2,引入依赖(对应的链接可以下载jar包) <!--二维码 操作依赖--> <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <depende 阅读全文
posted @ 2020-08-24 23:58 KwFruit 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 1,项目地址:https://github.com/zxing/zxing 2,引入依赖(对应的链接可以下载jar包) <!--二维码 操作依赖--> <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <depende 阅读全文
posted @ 2020-08-24 23:40 KwFruit 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 集成的是Freemaker, 1,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/X 阅读全文
posted @ 2020-08-22 20:21 KwFruit 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1,登陆钉钉开发者后台 2,选择登陆然后创建应用 第一步拉起授权页面,即扫码登陆页面,扫码后回调到你自己写好的回调地址 <a href="https://oapi.dingtalk.com/connect/qrconnect?appid=APPID&response_type=code&scope= 阅读全文
posted @ 2020-06-03 16:44 KwFruit 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 1,注册应用,获取Client ID 登录码云,鼠标移到头像,点击设置按钮,右边点击第三方应用,点击创建应用 填写信息,回调地址一定要填好 点击确定获取ClientID,和ClientSecret 发请求拉起授权页面 <a href="https://gitee.com/oauth/authoriz 阅读全文
posted @ 2020-05-22 20:38 KwFruit 阅读(1876) 评论(0) 推荐(1) 编辑
摘要: 网上有现成的轮子就不造轮子了 大神的参考链接:https://blog.csdn.net/chinano_1_/article/details/97042927 补充:在引入以下依赖后 <!--httpclient--> <dependency> <groupId>org.apache.httpco 阅读全文
posted @ 2020-05-20 15:04 KwFruit 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 引入依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>4.1.0</version> </dependency> mybatisConfig配置 阅读全文
posted @ 2020-05-17 20:43 KwFruit 阅读(288) 评论(1) 推荐(0) 编辑