Spring boot의 예시가 바껴 기록용으로 남겨놓음.
Greeting.java
package com.example.myrest;
public class Greeting {
private final long id;
private final String content;
public Greeting(long id, String content) {
this.id = id;
this.content = content;
}
public long getId() {
return id;
}
public String getContent() {
return content;
}
}
GreetingController.java
package com.example.myrest;
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@GetMapping("/greeting")
public Greeting greeting(@RequestParam(value = "name", defaultValue = "World") String name) {
return new Greeting(counter.incrementAndGet(), String.format(template, name));
}
}
Spring Boot으로 웹 출시까지 #6. thymleaf에서 form 전송하기 (0) | 2023.11.06 |
---|---|
Spring Boot으로 웹 출시까지 #5. jpa를 이용해 게시판 조회하기 (1) | 2023.11.03 |
Spring Boot으로 웹 출시까지 #4. thymeleaf를 이용해 레이아웃 만들기 (1) | 2023.11.02 |
Spring Boot으로 웹 출시까지 #3. thymeleaf 기본 익히기 (0) | 2023.11.01 |
Spring Boot으로 웹 출시까지 #2. thymeleaf를 이용한 화면 작성 (0) | 2023.11.01 |
댓글 영역