Rudimentary jar watching
New options watchJars takes a colon separated list of jars (just the jar names, not paths). For example: -Dspringloaded=watchJars=foo.jar:bar.jar Committed some very basic tests that are passing, they are in the SpringLoadedTestsInSeparateJVM test class, see the tests with 'jar' in the name.
This commit is contained in:
8
testdata/jars/two/Foo.java
vendored
Normal file
8
testdata/jars/two/Foo.java
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
public static void run() {
|
||||
n();
|
||||
}
|
||||
public static void n() {
|
||||
System.out.println("n() running");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user