上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 1、安装7z命令 yum install p7zip 2、减压.7z压缩文件 7za x xx.7z -r -o./xx 7za x 文件名.7z -r -o./文件目录 参数含义: x 代表解压缩文件,并且是按原始目录树解压(还有个参数 e 也是解压缩文件,但其会将所有文件都解压到根下,而不是自己 阅读全文
posted @ 2022-01-26 15:37 译林 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 1、需要添加在pom.xml中添加 <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> </dependency 阅读全文
posted @ 2021-12-22 15:51 译林 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 说明:@JsonPropertyOrder 勇于fastjson 对对象字段实现排序使用 1.@JsonPropertyOrder(value = {"name", "id"}) 明确制定字段排序顺序 name ==》 id 实体类属性 public class WorkingPlace imple 阅读全文
posted @ 2021-12-17 16:22 译林 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: PropertyPlaceholderConfigurer Spring中PropertyPlaceholderConfigurer这个类,它是用来解析Java Properties属性文件值,并提供在spring配置期间替换使用属性值。【一】配置惟一PropertyPlaceholderConfi 阅读全文
posted @ 2021-12-13 09:13 译林 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 1、创建表 CREATE table tb_user ( id serial primary key not null , name varchar(20) not null default '' ) ; comment on column tb_user.id is '主键id'; comment 阅读全文
posted @ 2021-12-08 10:23 译林 阅读(1912) 评论(0) 推荐(0) 编辑
摘要: 在某些情况下,有可能你会有这种需求:在Spring/SpringMVC项目中,当Spring/SpringMVC启动完成后,你需要执行一个方法来完成某些事件(比如创建网站地图,比如从订阅Redis服务器等),这个时候,可以使用Tomcat/Servlet容器提供的事件回调机制来完成,但是这样有个问题 阅读全文
posted @ 2021-12-08 09:47 译林 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1、pom文件中增加swagger饮用 <properties> <swagger.version>2.9.2</swagger.version> </properties> <dependency> <groupId>io.springfox</groupId> <artifactId>sprin 阅读全文
posted @ 2021-12-06 17:31 译林 阅读(93) 评论(0) 推荐(0) 编辑
摘要: maven打包编译时后台一直输出警告信息 File encoding has not been set, using platform encoding GBK, i.e. build is platform dependent! 解决办法:pom.xml中增加属性即可解决 <properties> 阅读全文
posted @ 2021-12-01 10:48 译林 阅读(1155) 评论(0) 推荐(0) 编辑
摘要: idea 控制台乱码 阅读全文
posted @ 2021-11-12 09:42 译林 阅读(382) 评论(0) 推荐(0) 编辑
摘要: spring.xml中应用其他xml文件时提示: 引用:<import resource="spring-datasource.xml" /> 提示:cannot resolve file spring-datasource.xml 解决办法: ctrl+shift+alt+s打开如下界面: 设置r 阅读全文
posted @ 2021-11-11 10:56 译林 阅读(1385) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页