Commit 72d777da by Patryk Czarnik

Hello world

parent 211aff6b
package com.example.demo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class PierwszyKontroler {
@RequestMapping("/hello")
@ResponseBody
public String helloWorld() {
return "Hello world - jestem Spring";
}
// TODO dopisz tu metodę, która wypisuje bieżący czas
// LocalTime.now()
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment