classpath
This commit is contained in:
parent
e7dd90e301
commit
31b8a17e65
|
@ -0,0 +1,36 @@
|
||||||
|
<?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.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>net.risesoft.demo</groupId>
|
||||||
|
<artifactId>demo-car</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.5.2</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<transformers>
|
||||||
|
<transformer>
|
||||||
|
<mainClass>net.risesoft.demo.Example</mainClass>
|
||||||
|
</transformer>
|
||||||
|
<transformer>
|
||||||
|
<resource>META-INF/spring.handlers</resource>
|
||||||
|
</transformer>
|
||||||
|
<transformer>
|
||||||
|
<resource>META-INF/spring.schemas</resource>
|
||||||
|
</transformer>
|
||||||
|
</transformers>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
|
@ -0,0 +1 @@
|
||||||
|
java -cp "./target/*;./target/lib/demo-audi-1.0.jar;;./target/lib/demo-merceds-1.0.jar" net.risesoft.demo.Example
|
|
@ -0,0 +1 @@
|
||||||
|
java -cp "./target/*;./target/lib/demo-merceds-1.0.jar;./target/lib/demo-audi-1.0.jar;" net.risesoft.demo.Example
|
|
@ -0,0 +1 @@
|
||||||
|
java -cp "./target/*;./target/lib/*" net.risesoft.demo.Example
|
16
pom.xml
16
pom.xml
|
@ -29,9 +29,7 @@
|
||||||
<manifest>
|
<manifest>
|
||||||
<mainClass>net.risesoft.demo.Example</mainClass>
|
<mainClass>net.risesoft.demo.Example</mainClass>
|
||||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
<!-- 将项目的依赖信息添加到 MANIFEST.MF 中 -->
|
<addClasspath>flase</addClasspath>
|
||||||
<addClasspath>true</addClasspath>
|
|
||||||
<!-- 将依赖的存放位置添加到 MANIFEST.MF 中-->
|
|
||||||
<classpathPrefix>lib/</classpathPrefix>
|
<classpathPrefix>lib/</classpathPrefix>
|
||||||
</manifest>
|
</manifest>
|
||||||
<manifestEntries>
|
<manifestEntries>
|
||||||
|
@ -58,10 +56,10 @@
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<!--<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>2.5.5</version>
|
<version>3.6.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
|
@ -81,12 +79,12 @@
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>-->
|
||||||
|
|
||||||
<plugin>
|
<!--<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
<version>2.4.1</version>
|
<version>3.5.2</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
|
@ -108,7 +106,7 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>-->
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
|
@ -1,28 +1,19 @@
|
||||||
package net.risesoft.demo;
|
package net.risesoft.demo;
|
||||||
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
public class Example {
|
public class Example {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Car car = new Car();
|
Car car = new Car();
|
||||||
System.out.println("当前车辆版本: " + car.getVersion());
|
|
||||||
|
System.out.println("当前车辆品牌: ");
|
||||||
|
System.out.println(car.getName());
|
||||||
|
|
||||||
|
System.out.println("当前车辆版本: ");
|
||||||
|
System.out.println(car.getVersion());
|
||||||
|
|
||||||
System.out.println("当前 jar 包路径 : ");
|
System.out.println("当前 jar 包路径 : ");
|
||||||
System.out.println(car.getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
|
System.out.println(car.getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
|
||||||
Method[] declaredMethods = car.getClass().getDeclaredMethods();
|
|
||||||
for (Method declaredMethod : declaredMethods) {
|
|
||||||
System.out.println("------------------");
|
|
||||||
System.out.println("method name: " + declaredMethod.getName());
|
|
||||||
List<String> collect = Arrays.stream(declaredMethod.getParameterTypes()).map(Class::getName).collect(Collectors
|
|
||||||
.toList());
|
|
||||||
if (!collect.isEmpty()) {
|
|
||||||
System.out.println("parameter type : " + collect);
|
|
||||||
}
|
|
||||||
System.out.println("------------------");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue