[bs-29] Support for XML configuration in groovy apps

Mixed .groovy and .xml now supported bia spring CLI, e.g.

$ spring samples/runner.groovy samples/runner.xml

[Fixes #48059037]
This commit is contained in:
Dave Syer
2013-04-29 16:12:29 +01:00
parent bb62ca835e
commit e3d5bf2e21
5 changed files with 52 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
package org.test
class Runner implements CommandLineRunner {
void run(String... args) {
print "Hello World!"
}
}