本地开发的时候,使用Graphics生成验证码是正常的,但是部署到CentOS的Tomcat中就报错了: Exception in thread "http-nio-8080-exec-4" java.lang.InternalError: java.lang.reflect.InvocationTargetException at java.desktop/sun.font.FontManagerFactory$1.run(FontManagerFactory.java:86) at java.base/java…

2021-07-03 0条评论 1537点热度 0人点赞 admin 阅读全文

前面文章介绍了如何使用Java压缩文件和文件夹:https://blog.terrynow.com/2021/07/01/java-zip-files-how-to/ 本篇Java示例代码是如何解压缩文件: public static void main(String[] args) throws Exception { unzipFile(new File("/Users/Terry/Downloads/test.zip"), new File("/Users/Terry/Downloads/test")); }…

2021-07-02 0条评论 1074点热度 0人点赞 admin 阅读全文

示例Java代码把多个文件用zip格式压缩成ByteArrayOutputStream并存成文件: public static void main(String[] args) throws Exception { //压缩doc下所有的文件 File[] files = new File("/Users/Terry/Downloads/doc").listFiles(); assert files != null; ByteArrayOutputStream bos = zipFiles(files); File…

2021-07-01 0条评论 910点热度 0人点赞 admin 阅读全文

一般SpringBoot打包后生成的是jar包,且自带了tomcat运行环境,是可以直接用java -jar app-0.0.1-SNAPSHOT.jar运行的,不过如果要让它跑在Tomcat下呢? Tomcat下运行的话,是需要war包,所以需要告诉pom是需要打包成war包,且不需要把tomcat运行环境导入war包。 需要修改pom.xml 修改<packaging>war</packaging>,告诉pom打成war包(否则会打包成jar包) spring-boot-starter-…

2021-06-30 0条评论 1437点热度 0人点赞 admin 阅读全文

今天打开一个纯IP地址的https网站,因为是自签名的证书,所以Chrome提示您的连接不是私密连接/Your connection is not private,因为我是知道这个网站(是自己架设的防火墙自用的),应该要可以忽略警告继续的,但是点了高级里面也没有继续的按钮。 后来找到解决办法,鼠标点一下这个页面的空白处,然后盲打输入:thisisunsafe,此时页面就可以跳转正常的页面了,如果还没有跳转,按一下回车。

2021-06-29 0条评论 2199点热度 0人点赞 admin 阅读全文

刚新安装的CentOS,想使用netstat -ant,提示-bash: netstat: command not found,原来是没有安装net-tools # CentOS下安装方式 yum install net-tools # Ubuntu下安装方式 # apt install net-tools 查看路由表 [root@localhost ~]# netstat -nr Kernel IP routing table Destination Gateway Genmask Flags MSS Windo…

2021-06-28 0条评论 1273点热度 0人点赞 admin 阅读全文

老系统使用的是Spring2.5.5,准备把老系统换到新的服务器上,安装好了新版的JDK11,却发现无法启动tomcat,查看tomcat/logs/catalina.out的日志: Unexpected exception parsing XML document from class path resource [applicationContext-dao.xml]; nested exception is java.lang.IllegalStateException: Context namespace …

2021-06-27 0条评论 1957点热度 0人点赞 admin 阅读全文

Mount NFS的时候,报错: mount: wrong fs type, bad option, bad superblock on 10.0.0.1:/storage, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program) In some cases useful …

2021-06-26 0条评论 1259点热度 0人点赞 admin 阅读全文

iView的Tabs 标签页组件里,里面的label想用render动态设置label的文字,render函数并可以接收参数,可以使用参数,如下: <!--根据items动态生成多个TabPane--> <TabPane :label="tabLabel(item, index)" v-for="(item, index) in items"> </TabPane> tabLabel: function (item, index) { return function (h) { …

2021-06-25 0条评论 1406点热度 0人点赞 admin 阅读全文

SpringBoot默认采用的应用服务器是Tomcat,如果要换成Jetty,可以在pom.xml 如下设置: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0…

2021-06-24 0条评论 849点热度 0人点赞 admin 阅读全文
1626364656684