database 연결
header 의 목록 버튼을 누르면 해당하는 목록 페이지를 보여주게 하려고 한다. //상세페이지 이동 const gotolist = (getcategory:any) => { // axios.post(`http://localhost:4040/${getcategory}`); window.location.href = `http://localhost:3000/list/${getcategory}`; } list 주소의 category를 통해서 이동한다. 기존의 ClassListController 에서 @RestController @RequestMapping("list/") public class ClassListController { @Autowired ClassService classService; @GetMa..
2023.02.03