Intro to Spring Groovy Update and Merge (#1369)

* javaslang updates

* updated repo

* clean

* clean

* clean

* clean
This commit is contained in:
Andrew Evans
2017-03-12 04:24:07 -06:00
committed by adamd1985
parent 2f3f490453
commit dc142e8423
6 changed files with 106 additions and 0 deletions
@@ -0,0 +1,13 @@
package com.baeldug.spring_groovy;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
@@ -0,0 +1,8 @@
package com.baeldug.spring_groovy;
import org.springframework.stereotype.Component;
@Component
public class TestConfig {
}
@@ -0,0 +1,5 @@
beans{
testString String, 'test'
testNum int, 100
testObj(i:101,s:'objVal')
}