@Controller
public class HelloController {
@GetMapping("hello")
public String hello(Model model) {
model.addAttribute("data", "hello/1!!!");
return "hello";
}
}
Model model은 model에 데이터를 실어서 뷰에 넘길 수 있다.
return 은 화면 이름
https://wikidocs.net/232
http://egloos.zum.com/silverer/v/1875796
https://minkukjo.github.io/framework/2020/04/28/Spring-107/
https://www.inflearn.com/questions/305844
https://sas-study.tistory.com/316
https://b-programmer.tistory.com/229?category=891876
대신 assertThrows를 이용하는데, assertAll로 한번에 개별적으로 설정하는 법도 있다.
Junit4
Assert.assertEquals(@Nullable String message, @Nullable Object expected, Object actual)
Junit5
Assertions.assertEquals(@Nullable Object expected, Object actual, @Nullable String message)
메세지 순서가 다르다.
https://hello-u.tistory.com/entry/spring-boot-NotEmpty-import-%EC%95%88%EB%90%A0-%EB%95%8C