Intro to Spring Groovy Update and Merge (#1369)
* javaslang updates * updated repo * clean * clean * clean * clean
This commit is contained in:
@@ -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')
|
||||
}
|
||||
Reference in New Issue
Block a user