Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jbruinink on github.
  • I am jbruinink (https://keybase.io/jbruinink) on keybase.
  • I have a public key ASCp8Tszi7R1_bHWR5re9PXC13s5c6VOWrCdQSeI_O5vGAo

To claim this, I am signing this object:

@jbruinink
jbruinink / HelloController.java
Created March 23, 2017 20:58
Hello World Controller
package com.jdriven.ng2boot;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping(value ="/test")
public String helloWorld() {