03 2020 档案
摘要:Joda-Time 处理日期时间的库 常用的类 Instant :用来表示时间轴上一个瞬时的点(时间戳) DateTime :用来替换JDK的Calendar类 LocalDate :表示一个本地的日期,而不包含时间部分(没有时区信息) LocalTime :表示一个本地的时间,而不包含日期部分(没
阅读全文
摘要:spring boot 版本 2.2.5.RELEASE 初始化文件 schema.sql 放在项目resources下 drop table users if exists; drop table goods if exists; create table users ( id bigint au
阅读全文
摘要:Joda-Money提供了一个存储金额的类库 通常的做法就是数据库设计成bigint类型,单位是分,入库扩大 100 倍 ,出库缩小 100 倍 schema.sql drop table goods if exists; create table goods ( id bigint auto_in
阅读全文
摘要:Shiro Apache Shiro是Java的一个安全框架 特点: 易于理解的 Java Security API 简单的身份认证(登录),支持多种数据源(LDAP,JDBC,Kerberos,ActiveDirectory 等) 对角色的简单的签权(访问控制),支持细粒度的签权 支持一级缓存,以
阅读全文
摘要:1.HikariCP SpringBoot 2.0后默认连接池,默认使用无需配置 Hikari来自日文,是“光”的意思 优点: 代码量非常小 稳定性,可靠性强 速度快 优化并精简字节码 自定义数组类型(FastStatementList)代替ArrayList 自定义集合类型(ConcurrentB
阅读全文
摘要:有两个服务 server1——占用端口8080 测试方法: /api/hello 输出:Hello server2——占用端口8081 测试方法: /api/hello 输出:Hello,other 实现当请求地址带有 v1.0 时,调用 server1,输出 Hello v2.0 时,调用 ser
阅读全文
摘要:springboot 多模块项目打包时遇到 [ERROR] 'packaging' with value 'jar' is invalid. Aggregator projects require 'pom' as packaging. @ line 3, column 102 在parent 项目
阅读全文
摘要:1.ShowDoc https://gitee.com/star7th/showdoc.git 2.gitbook (1)安装nodejs (2)安装gitbook cnpm install gitbook-cli -g (3)安装是否成功 (4)初始化 gitbook init 自动生成文件 (5
阅读全文
摘要:Sublime3使用ctrl+Alt+F格式化php代码时,遇到 出错的原因: php7.2废弃了each方法,但是codeformatter中却还在使用这个方法,所以就会报错 解决方法: 修改codeformatter配置,php_path,改为低版本的即可 "codeformatter_php_
阅读全文
摘要:Electron——使用 JavaScript,HTML 和 CSS 构建跨平台的桌面应用程序 1.安装nodejs 2.创建package.json npm init eg: { "name": "abc", "version": "1.0.0", "description": "", "main
阅读全文
摘要:今天进行接口联调时遇到一个问题,js获取到的数据和postman获取到的数据不一样(以前遇到过,但是这次居然有才坑了,所以一定要记下来记住) js获取的数据 {id: 434795728515375100, name: "111"} postman获取的数据 { "id": "43479572851
阅读全文
摘要:api跨域配置 @Configuration public class WebMvcConfig implements WebMvcConfigurer {//解决跨域问题 @Override public void addCorsMappings(CorsRegistry registry) {
阅读全文
摘要:JSONObject put数据之后,排序会发生变化 JSONObject rs = new JSONObject(); rs.put("a",11); rs.put("f",33); rs.put("c",22); 取出来的时候 {"a":11,"c":22,"f":33} JsonObject内
阅读全文
摘要:Long的值判断是否相等使用 “==”,遇到问题 public class Demo { public static void main(String[] args) { Long m = 1L; Long n = 1L; if (m == n) { System.out.println("m 等于
阅读全文