package utils; import javax.crypto.Cipher; import java.security.*; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAP ...
分类:
其他好文 时间:
2020-05-13 17:00:30
阅读次数:
64
springboot项目部署到服务器常见的方式就是打成war包部署Tomcat或者打成jar包直接使用内置容易运行,很多人现在都打成war包部署到tomcat,这种方式虽然没问题 但是后期维护比较麻烦。从官方的说明中 打成jar部署是最好的方式,但是这样又有个问题 如果同时部署多个spring-bo ...
分类:
编程语言 时间:
2020-05-13 16:59:54
阅读次数:
107
tinyproxy——A light-weight HTTP proxy daemon 描述:tinyproxy服务重启时报告PID文件无法打开错误,但服务启动成功。 错误描述:tinyproxy.service: Can't open PID file /run/tinyproxy/tinypro ...
分类:
其他好文 时间:
2020-05-13 16:38:14
阅读次数:
245
IDEA启动Tomcat时报java.lang.IllegalStateException: Error starting child 总结 今天练习文件上传的时候遇到这个错误,总结了一下有我的解决办法 是jar包问题,可能是版本不一致: 解决方法: 1. 删除本项目的servlet依赖的那个jar ...
分类:
编程语言 时间:
2020-05-13 14:13:17
阅读次数:
803
convert expdp dmp file to SQL DDL statements Oracle Database Tips by Donald BurlesonApril 7, 2016 Question: I want to take an export dmp file and conv ...
分类:
数据库 时间:
2020-05-13 12:03:46
阅读次数:
78
springBoot框架的特点就是舍去了繁琐的配置。使开发者可以把更多的精力放在业务逻辑的开发上。 springBoot搭建分三步。 1.创建一个普通Maven工程。 2.导入springBoot依赖包 3.新建一个引导类 因为springBoot内置了tomcat,所以启动项目的方式是启动引导类即 ...
分类:
编程语言 时间:
2020-05-13 10:02:27
阅读次数:
64
IDEA运行 tomcat时出现 Address localhost:8080 is already in use
分类:
其他好文 时间:
2020-05-13 09:42:28
阅读次数:
90
删除指定路径下的 以xxx开头xxxx结尾的文件 public static void main(String[] args) { File file = new File("D:\\WindowsETC\\ETC_Managent\\apache-tomcat\\bin");//文件目录 File ...
分类:
其他好文 时间:
2020-05-12 20:42:29
阅读次数:
76
按钮样式自定义演示: 源码分享地址: https://github.com/DuelWithSelf/WPFEffects 效果: <Style TargetType="{x:Type CustomFrms:NormalMenu}"> <Setter Property="IconWidth" Val ...
1、windows+R 输入cmd 2、netstat -ano|findstr 8080 (查看占用8080端口的进程,显示占用端口的进程) 3、taskkill /pid 1952 /f (windows自带taskkill命令,将上面显示的进程号,结束掉。) 4、完 ...
分类:
其他好文 时间:
2020-05-12 11:36:42
阅读次数:
59