随笔分类 -  日常问题

摘要:因为最近在看阿里巴巴华山版开发手册,手册中禁止使用static修饰simpledateformat。顾想起使用java8最新的时间api:localdate。 大体概括一下: date -> localdate time -> localtime datetime -> localdatetime 阅读全文
posted @ 2020-05-18 14:50 梓铭君 阅读(750) 评论(0) 推荐(0)
摘要:问题描述 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接 解决方案 windows环境 删除jre目录下/lib/security/java.security文件 修改jdk目录下 jre/lib/security/java.security 文件 注释 ,3D 阅读全文
posted @ 2020-05-13 11:04 梓铭君 阅读(349) 评论(0) 推荐(0)
摘要:oshi maven依赖 <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>5.0.0</version> </dependency> 具体实现 package co 阅读全文
posted @ 2020-05-09 15:34 梓铭君 阅读(1105) 评论(0) 推荐(0)
摘要:测试类 package com.avivacofco.epidemic.test; import com.avivacofco.epidemic.hr.entity.HrUser; import java.util.concurrent.*; /** * @author :jerry_wei * @ 阅读全文
posted @ 2020-05-07 15:10 梓铭君 阅读(291) 评论(0) 推荐(0)
摘要:maven依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>1.0.1</version> </dependency> 写入excel excel实体类 package 阅读全文
posted @ 2020-05-06 13:47 梓铭君
摘要:启动项目时,报java.lang.OutOfMemoryError: Java heap space,需要调整一下idea自身的配置: 1.tomcat配置 点击edit configurations - 在 vm options 里面添加 : -server -XX:PermSize=4096M 阅读全文
posted @ 2020-04-16 15:05 梓铭君 阅读(2064) 评论(0) 推荐(0)