Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Last active March 2, 2023 10:11
Show Gist options
  • Save kjunichi/626c0812964307f0d084cc57ebb66b8b to your computer and use it in GitHub Desktop.
Save kjunichi/626c0812964307f0d084cc57ebb66b8b to your computer and use it in GitHub Desktop.

CityGML

PLATEAU

Spring Initializr

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
		return String.format("Hello %s!", name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment