https://congsong.tistory.com/13?category=749196
https://spring.io/blog/2013/12/19/serving-static-web-content-with-spring-boothttps://atoz-develop.tistory.com/entry/spring-boot-web-mvc-stat
https://congsong.tistory.com/15?category=749196
https://gmlwjd9405.github.io/2018/09/21/rest-and-restful.html
@service This annotation serves as a specialization of @Component,allowing for implementation classes to be autodetected through classpath scanning.
기본적으로 Spring은 Controller에서 return하면 ViewResolver를 통해서 해당 view를 return하게 되는데, @ResponseBody annotation을 사용하면 ViewResolver가 아닌 MessageConver에 의해서 데이터 변환
java class를 만들고 @Autowired한다고 해서 해당 Class를 객체로 사용할 수 없다.스프링에서 객체로 사용하기 위해서는 Spring Container에 등록되어야 사용할 수 있다.자바 class를만들고 해당 목적에 따라서 @Repository, @Bea
https://spring.io/guides/tutorials/rest/
https://api.jquery.com/jquery.ajax/dataType: PlainObject or String or ArrayData to be sent to the server. If the HTTP method is one that cannot h
기존의 dynamic하게 table생성하는 방식은으로 하였다.하지만 해당 방식으로 table생성시식으로 tr안에 td가 감싸져있지 못하는 문제점이 발생한다.따라서 해결방법으로는 The $('') thing in jQuery is a tag object that can
진짜 이상하다 ${변수} 를 사용하면 에러가 안뜬다 찾아봐야 겠다https://stackoverflow.com/questions/13860056/dynamic-sort-type-doesnt-work-in-mybatis
@GetMapping에서는 @RequestParam으로 받아지는데 @PostMapping에서는 @RequestParam으로 받아지지 않고 @RequestBody으로 받아지는 이유 -> @RequestParam은 url상에서 '?variable=value' 형식으로