* Commit for Eval Article pull request * Revert "Commit for Eval Article pull request" * BAEL-46 - Deleted duplicate class. * BAEL-46 - Fixed old script version * BAEL-46 - Updated per editor review * BAEL-46 - Updated JMX for corrected parameters * BAEL-46 - Corrected Name and Directory * Bael-3000 - initial commit * Bael-3000 - update per review * Bael-3000 - Updated per code review * Bael-3000 - Updated per code review * Update core-java-modules/core-java-jndi/pom.xml Co-Authored-By: KevinGilmore <kpg102@gmail.com> * Update core-java-modules/core-java-jndi/pom.xml Co-Authored-By: KevinGilmore <kpg102@gmail.com> * Bael-624 Wildfly Setup * Update pom.xml * Bael-624 Review updates
15 lines
307 B
Java
15 lines
307 B
Java
package hello;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
@RestController
|
|
public class HelloController {
|
|
|
|
@RequestMapping("/")
|
|
public String index() {
|
|
return "Greetings from Spring Boot!";
|
|
}
|
|
|
|
}
|