Created
December 28, 2016 18:43
-
-
Save josephfinlayson/d9c79a73cecf4f24bf91167a1cfe43e8 to your computer and use it in GitHub Desktop.
What is HelloWorld in this example?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.tutorialspoint; | |
import org.springframework.context.annotation.*; | |
@Configuration | |
public class HelloWorldConfig { | |
@Bean | |
public HelloWorld helloWorld(){ | |
return new HelloWorld(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment