본문 바로가기
반응형

전체 글293

[Spring] Bootstrap SB Admin 2 설치하기 https://greed-yb.tistory.com/209 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(1) - 구성 Java 17 Maven Spring Boot 3.0.3 Oracle 11g IntelliJ Ultimate DBeaver 간단한 CRUD 만 구현해 놓았으며 순서대로 만들면서 올리려고 하였으나 시행착오가 생각보다 많이 생겨서 다 만들고서 완성본을 올린다 메서 greed-yb.tistory.com 해당 글은 프로젝트의 연상선이지만 설치하는 부분에 있어서는 관계가 없다 Bootstrap(부트스트랩) 설치 https://startbootstrap.com/ Start Bootstrap startbootstrap.com 위의 주소로 이동한다.. 2023. 4. 24.
[Spring] Java - @RequestParam , @PathVariable , @ModelAttribute 차이 및 사용 @RequestParam 일반적으로 @RequestMapping 에서 Get 메서드 또는 @GetMapping 에서 사용하며 @PostMapping 에서도 @RequestParam을 사용할 때는 Form 태그 메서드가 Post 면 가능하다 // html // Controller @GetMapping("/board/read") public String boardRead(@RequestParam("num") Integer num , Model model) throws Exception{ // http://localhost:9090/board/read?num=143 board/read(num=${vo.b_num}) 으로 했을때 ?num=143 가 붙어서 주소로 이동하였다 예 ) http://localhost:.. 2023. 4. 22.
[SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(8) - 실행 이전글 https://greed-yb.tistory.com/215 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(7) - html 화면 이전글 https://greed-yb.tistory.com/214 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - UTIL (Paging) 이전글 https://greed-yb.tistory.com/213 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - Vo 이 greed-yb.tistory.com 게시판 리스트 게시글 작성 게시판 리스트 페이징 글 생성은 반복문 또는 Insert 문을 계속 실행하.. 2023. 4. 20.
[SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(7) - html 화면 이전글 https://greed-yb.tistory.com/214 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - UTIL (Paging) 이전글 https://greed-yb.tistory.com/213 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - Vo 이전글 https://greed-yb.tistory.com/212 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(4) - Mapper , DB 생 greed-yb.tistory.com index.html ( 게시판 리스트) 게시판 제목 이름 내용 검색 글 작성 번호 제목 이름 .. 2023. 4. 20.
[SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(6) - UTIL (Paging) 이전글 https://greed-yb.tistory.com/213 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - Vo 이전글 https://greed-yb.tistory.com/212 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(4) - Mapper , DB 생성 https://greed-yb.tistory.com/211 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(3) - Service htt greed-yb.tistory.com Criteria package com.example.practice.util; public class .. 2023. 4. 20.
[SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(5) - Vo 이전글 https://greed-yb.tistory.com/212 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(4) - Mapper , DB 생성 https://greed-yb.tistory.com/211 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(3) - Service https://greed-yb.tistory.com/210 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(1) - Controller https://greed-yb.tist greed-yb.tistory.com Vo.java package com.example.practic.. 2023. 4. 20.
반응형