SampleController.java
페이지 정보
![profile_image](https://dancepkt.cafe24.com/data/member_image/ad/admin.gif?1630310007)
본문
package web.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import lombok.extern.log4j.Log4j2;
@Controller
@Log4j2
public class SampleController {
@GetMapping("/hello")
public void hello(Model model) {
log.info("hello..................");
model.addAttribute("msg", "Hello 하이~");
}
}
- 이전글● Controller 와 html 이용한 Thymeleaf 테스트 24.06.03
- 다음글hello.html 24.06.03
댓글목록
등록된 댓글이 없습니다.