摘要:
**一、**Spring Boot 入门 1、Spring Boot 简介 简化Spring应用开发的一个框架; 整个Spring技术栈的一个大整合; J2EE开发的一站式解决方案; 2、微服务 2014,martin fowler 微服务:架构风格(服务微化) 一个应用应该是一组小型服务;可以通过 阅读全文
摘要:
1、上传到disk 步骤: //1、创建DiskFileItemFactory对象,设置缓冲区大小和临时文件目录。 new DiskFileItemFactory; //2、使用DiskFileItemFactory 对象创建ServletFileUpload对象,并设置上传文件的大小限制。 new 阅读全文
摘要:
EasyExcel EasyExcel导入的用法 实体类(员工表) @Data @ApiModel("员工") public class Employe { @ExcelIgnore private Integer id; @ExcelProperty(value = "姓名", index = 0 阅读全文
摘要:
logback-spring.xml <?xml version="1.0" encoding="UTF-8"?> <configuration> <!--定义日志文件的存储地址,使用绝对路径--> <property name="LOG_HOME" value="d:/logs"/> <!-- C 阅读全文
摘要:
VerifyUtil package com.govcloud.msbusinessserviceprovider.util; import java.awt.*; import java.awt.image.BufferedImage; import java.util.Random; publi 阅读全文
摘要:
ResultCode package com.xuecheng.framework.model.response; /** * Created by wjp on 2018/3/5. * 10000-- 通用错误代码 * 22000-- 媒资错误代码 * 23000-- 用户中心错误代码 * 240 阅读全文
摘要:
Swagger使用说明 构建项目 构建springboot项目,添加web模块 1、依赖关系(pom文件) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns: 阅读全文
摘要:
修改nginx配置文件 配置文件所在位置:安装目录下的conf文件夹下的nginx.conf 在server中添加如下内容: location /files{ alias /home/wjp-file/files } 重启nginx服务 systemctl restart nginx cd /s 阅读全文
摘要:
安装所需环境 yum install -y gcc-c++ pcre pcre-devel zlib-devel openssl-devel * 将下载后的nginx压缩包上传至linux服务器 * 进入该目录下使用命令解压文件 cd /usr/local tar -zxvf ngin-1.16.0 阅读全文
摘要:
git config --global user.name 'wjp-110' git config --global user.email '460019140@qq.com' mkdir test cd test git init toch a1.php git status git add a 阅读全文