diff --git a/README.md b/README.md index 8a61388d3f4a52a9e6b41944a368433b60346c71..bed25ef3351abd7fbd8d0bb3d5ec028f57656703 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This project is based on a GitLab [Project Template](https://docs.gitlab.com/ee/gitlab-basics/create-project.html). -Additions and changes to the project can be proposed in the [original project](https://gitlab.com/gitlab-org/project-templates/spring). +Improvements can be proposed in the [original project](https://gitlab.com/gitlab-org/project-templates/spring). ### CI/CD with Auto DevOps diff --git a/src/main/java/com/example/demo/DemoApplication.java b/src/main/java/com/example/demo/DemoApplication.java index 69a8d12463fa02791958dfe9f901eb7c4c928c62..a3127b44f1edda23e22bec85ff70e3064b3f378e 100644 --- a/src/main/java/com/example/demo/DemoApplication.java +++ b/src/main/java/com/example/demo/DemoApplication.java @@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.*; @RestController public class DemoApplication { - @RequestMapping("/") + @GetMapping("/") String home() { return "Spring is here!"; }