반응형 개발/Spring73 [EClipse] 이클립스 설치하기 1. JDK 설치하기 https://www.oracle.com/java/technologies/downloads/#java8-windows Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com 사이트 하단에 Java 8 버전이 있다 자신의 운영체제에 맞춰서 설치하자 (해당 사이트는 회원가입을 해야하며 개발자라면 해당 사이트를 무조건 가입해야할 것이다) 파일을 다운 받아 설치하면 해당 폴더에 파일이 생성된다 시작 -> cmd(명령 프롬프트) -> java -versio.. 2023. 5. 2. [SpringBoot] SecurityConfig + JWT - SecurityConfig 설정 Java 17 Maven Spring Boot 3.0.3 Oracle 11g IntelliJ Ultimate DBeaver pom.xml org.springframework.boot spring-boot-starter-security 3.0.4 io.jsonwebtoken jjwt 0.9.1 SecurityConfig.java package com.example.practice.security.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.w.. 2023. 4. 27. [SpringBoot] Session을 이용한 로그인 , 인증 하기 이전글 https://greed-yb.tistory.com/219 [Spring] Bootstrap 적용 웹 게시판 만들기 - 회원가입이전글 https://greed-yb.tistory.com/216 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(8) - 실행 이전글 https://greed-yb.tistory.com/215 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(7) - html 화면 greed-yb.tistory.com ControllerMainController /** * 메인 페이지 * @return * @throws Exception */ @GetMapping("/") public .. 2023. 4. 26. [Spring] Bootstrap 적용 웹 게시판 만들기 - 회원가입 이전글 https://greed-yb.tistory.com/216 [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 (Pa greed-yb.tistory.com 이전글 https://greed-yb.tistory.com/218 [Spring] Bootstrap SB Admi.. 2023. 4. 24. [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. 이전 1 ··· 7 8 9 10 11 12 13 다음 반응형