Skip to content

Instantly share code, notes, and snippets.

@NSLog0
Created May 19, 2016 05:30
Show Gist options
  • Select an option

  • Save NSLog0/a0ad2d3b8de7013181003999a2e11cdf to your computer and use it in GitHub Desktop.

Select an option

Save NSLog0/a0ad2d3b8de7013181003999a2e11cdf to your computer and use it in GitHub Desktop.
Turorial for React and Spring Boot
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