Created
May 19, 2016 05:30
-
-
Save NSLog0/a0ad2d3b8de7013181003999a2e11cdf to your computer and use it in GitHub Desktop.
Turorial for React and Spring Boot
This file contains hidden or 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.algorithmtut; | |
| import org.springframework.stereotype.Controller; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| @Controller | |
| public class HomeController { | |
| @RequestMapping("/") | |
| public String core() { | |
| return "index"; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment