Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java中是否有一个选项可以在运行时更改jar文件的顺序取决于应用程序的参数。
案例1:值为true的输入参数:jar A将在类路径中的jar B之前
案例2:值为false的输入参数:jar B将在类路径中的jar A之前
提前致谢。
据我所知,您只能通过在应用程序启动时手动加载类来实现这一点。
看看这个:URLClassLoader
这样,您可以根据参数更改加载类的顺序。