SpringBoot: Difference between revisions

From Wiki RB4
Line 12: Line 12:
   
   
  @RestController
  @RestController
@CrossOrigin(origins="http://localhost:4200") // avoid cross origin errors in browser
  public class HelloWorldController  
  public class HelloWorldController  
  {
  {

Revision as of 22:03, 8 February 2021

Concepts

  • SpringBoot Autoconfiguration
  • Dispatcher Servlet

Configuration

\test1\src\main\resources\applircation.properties
  logging.level.org.springframework = debug

Implementation

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@CrossOrigin(origins="http://localhost:4200") // avoid cross origin errors in browser
public class HelloWorldController 
{
  // @RequestMapping(method=RequestMethod.GET, path="/hello-world")
  @GetMapping(path="/hello-world")

Examples

  • start eclipse
  • File -> Import -> Maven Project