Skip to content

Instantly share code, notes, and snippets.

@josephfinlayson
Created December 28, 2016 18:43
Show Gist options
  • Save josephfinlayson/d9c79a73cecf4f24bf91167a1cfe43e8 to your computer and use it in GitHub Desktop.
Save josephfinlayson/d9c79a73cecf4f24bf91167a1cfe43e8 to your computer and use it in GitHub Desktop.
What is HelloWorld in this example?
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