Package edu.ucsb.cs156.example
Class ExampleApplication
java.lang.Object
edu.ucsb.cs156.example.ExampleApplication
The ExampleApplication class is the main entry point for the application.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionorg.springframework.boot.ApplicationRunnerHook that can be used to set up any services needed for developmentstatic voidThe main method is the entry point for the application.org.springframework.boot.ApplicationRunnerWhen using the wiremock profile, this method will call the code needed to set up the wiremock services
- 
Constructor Details- 
ExampleApplicationpublic ExampleApplication()
 
- 
- 
Method Details- 
wiremockApplicationRunner@Profile("wiremock") @Bean public org.springframework.boot.ApplicationRunner wiremockApplicationRunner()When using the wiremock profile, this method will call the code needed to set up the wiremock services
- 
developmentApplicationRunner@Profile("development") @Bean public org.springframework.boot.ApplicationRunner developmentApplicationRunner()Hook that can be used to set up any services needed for development
- 
mainThe main method is the entry point for the application.- Parameters:
- args- command line arguments, typically unused for Spring Boot applications
 
 
-