一切福田,不離方寸,從心而覓,感無不通。

fastjson的日期格式化

//SerializerFeature.WriteDateUseDateFormat 使用日期字段格式序列化(2017-01-01),而不是用时间戳表示日期 JSON.toJSONString(data, SerializerFeature.WriteDateUseDateFormat)); from:https://www.cnblogs.com/gossip/p/6963957.html

龙生   21 Nov 2022
View Details

Maven单、多仓库配置

1. 单独仓库配置 打开Maven配置文件 apache-maven-3.6.3\conf\settings.xml 在<mirrors></mirrors>标签里新增一个mirror配置即可。

标签 作用 id 镜像的唯一标识 name 名称描述 url 地址 mirrorOf 指定镜像规则,什么情况下从镜像仓库拉取   mirrorOf规则 作用 * 匹配所有,所有内容都从镜像拉取 external:* 除了本地缓存的所有从镜像仓库拉取 central 覆盖默认的仓库 repo1,repo2 匹配仓库repo1和repo2,使用逗号分割多个远程仓库 比如:镜像配置的规则 <mirrorOf>repo1</mirrorOf>,意为:匹配到目标仓库 <id>repo1</id>; 所以maven认为目标仓库central被镜像了; 不再去 https://repo.maven.apache.org/maven2/ 地址下载jar包; 而是去镜像仓库 http://maven.aliyun.com/nexus/content/groups/public/ 下载jar包。   2. 多仓库配置 有时候我们需要的jar包公有仓库没有,此时就必须启用多仓库配置,使maven同时使用私有仓库和公有仓库。 在<profiles></profiles>标签里配置多个profile配置。

  在<activeProfiles></activeProfiles>标签里使用<activeProfile></activeProfile>标签启用配置。

  from:https://www.aliang.link/pages/df2aeb/#_2-%E5%A4%9A%E4%BB%93%E5%BA%93%E9%85%8D%E7%BD%AE

龙生   20 Nov 2022
View Details

CentOS7 执行yum 命令出错 One of the configured repositories 如何解决

新安装的一台云服务器, 执行yum命令出现了错误, One of the configured repositories failed (Unknown), 最后是Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again 。完整的错误信息是: 这里重点是最后一行 for repository: epel/x86_64. 说明是这个仓储出了问题。 解决办法1 删除这个仓库

这样执行yum命令就可以正确的执行。不过少了 epel 仓库好多软件包不能用。 这里介绍 第二种解决方法 查看了

然后测试了一下网络

发现网络不通,这里就需要解决网络问题。 修改dns cat /etc/resolv.conf

  from:https://blog.csdn.net/b_o_n_z_t_f/article/details/121195667

龙生   18 Nov 2022
View Details

Name or service not known, ping域名报错

一. 问题现象
ping公网域名失败,提示Name or service not known,但可以ping通弹性公网IP。

二. 问题根因
出现该问题通常有三个原因:
/etc/resolv.conf未配置DNS地址或者DNS地址错误导致。
/etc/nsswitch.conf文件删除DNS解析记录导致。
/lib64/libnss_dns.so.2库文件丢失导致无法解析域名。

龙生   18 Nov 2022
View Details

安装JDK出现内部错误61003

问题:安装java出现内部错误61003,安装成功输入java -version提示无法打开dll文件
原因:没有装visual c++2015 redistributable
解决方案 下载并安装该插件

安装 visual c++2015 redistributable

链接 https://www.microsoft.com/en-us/download/details.aspx?id=48145

龙生   06 Nov 2022
View Details

Java获取毫秒值

1.java.lang.System类 该方法的作用是返回当前的计算机时间,时间的表达格式为当前计算机时间和GMT时间(格林威治时间)1970年1月1号0时0分0秒所差的毫秒数。

  2.Calendar类 先由getInstance获取Calendar对象,然后用clear方法将时间重置为(1970.1.1 00:00:00),接下来用set方法设定指定时间,最后用getTimeMillis获取毫秒值。

  ※ Calendar 的 month 从 0 开始,也就是全年 12 个月由 0 ~ 11 进行表示。 3.java.util.Date类、SimpleDateFormat类 先由时间格式创建SimpleDateFormat对象,然后通过parse方法由指定时间创建Date对象,最后由Date对象的getTime方法获取毫秒值。

  测试

  结果 System.currentTimeMillis()  1630315030949 耗时(ns):39600 new Date().getTime()    1630315030949 耗时(ns):500300 Calendar.getInstance().getTimeInMillis()    1630315030956 耗时(ns):19424400 参考: https://www.cnblogs.com/jpfss/p/10455524.html 转载请注明出处:BestEternity亲笔。   from:https://blog.csdn.net/BestEternity/article/details/119998914

龙生   03 Nov 2022
View Details

CentOS 7 把已登录的用户断开

查看登陆用户 w
登出已登录用户 pkill -kill -t pts/0

龙生   01 Nov 2022
View Details