Limited Setting Effect 中文描述 Java 8 -Xbootclasspath:<path> Sets the search path for bootstrap classes and resources. 设置引导类和资源的搜索路径. 不常用,否则要重新写所有Java 核心class Java 8 -Xbootclasspath/p:<path> Prepends the specified resources to the front of the bo…
背景 现在很多软件都支持集群部署,但是测试环境通常资源有限,所以一般通过单台机器模拟集群部署(使用不同端口,运行相同jar包),本文的目的就是通过多种方式实现此需求. 两个程序 1.jar程序 ① springboot程序 ② 只包含一个main方法,用于启动程序,输出进程ID ③ 路径:C:/demo.jar(windows) /demo.jar(Linux) 2.启动程序 ① 包含main方法的程序 多种方式 1.通过URLClassLoader加载jar程序(windows平台) 2.通过…
startup.bat @echo off set path=X:\xxxxxxx\Java\JDK\jre\bin START "项目名" "%path%\java" -jar 要启动的jar包路径 shutdown.bat 这是根据项目名停止项目运行 wmic process where (commandline LIKE "%%项目名%%" and caption="java.exe") call ter…