전체 글(59)
-
Spring Security 이용하여 로그인 처리 - 1편(로그인 페이지 틀)
Spring Security Dependency 추가하기 https://spring.io/guides/gs/securing-web/ Securing a Web Application this guide is designed to get you productive as quickly as possible and using the latest Spring project releases and techniques as recommended by the Spring team spring.io 위 링크에 접속 후 dependency 부분을 복사합니다. pom.xml pom.xml 안에 dependency를 추가합니다. 추가 후 Maven으로 다시 로드를 합니다. (확실히 적용시켜 줍니다.) Config 설정하기 c..
2022.11.12 -
JPA를 이용하여 특정 페이지 처리하기
게시판 밑에 버튼 모양 양식 가져오기 https://getbootstrap.com/docs/4.5/components/pagination/#overview Pagination Documentation and examples for showing pagination to indicate a series of related content exists across multiple pages. getbootstrap.com Bootstrap 페이지처리 코드를 복사합니다. list.html 게시판 총 건수 : 번호 제목 작성자 Mark Otto 홍길동 Previous 1 2 3 Next 쓰기 list.html 안에 table, "쓰기" 버튼 사이에 Bootstrap에서 가져온 양식을 붙여넣습니다. 정상적으로 실행..
2022.10.27 -
RESTful API 작성하기
API 추가하기 Controller 폴더에 BoardApiController 파일을 추가합니다. BoardApiController 클래스 https://spring.io/guides/tutorials/rest/ Building REST services with Spring this tutorial is designed to be completed in 2-3 hours, it provides deeper, in-context explorations of enterprise application development topics, leaving you ready to implement real-world solutions. spring.io package com.example.layout.controlle..
2022.10.26 -
게시판 글쓰기 구현하기
실습환경 intellij(인텔리제이), HeidiSQL(MariaDB) 실습하기 게시판 틀 만들기 - form.html list.html 복사하여 form.html을 만듭니다. https://getbootstrap.com/docs/4.6/components/forms/ Forms Examples and usage guidelines for form control styles, layout options, and custom components for creating a wide variety of forms. getbootstrap.com 2개의 양식을 복사합니다. 1, 2번 양식은 위와 같습니다. 게시판 제목 내용 list.html에 있던 주석을 지우고, 제목 양식, 내용 양식을 위와 같이 변경합니다...
2022.10.06 -
게시판 구현하기
실습환경 intellij(인텔리제이), Spring Boot, HeidiSQL 실습하기 전에 https://limestory07.tistory.com/60?category=1054832 Spring Boot MariaDB 연동하기 실습환경 intellij(인텔리제이), heidiSQL(MariaDB) JPA 종속성(dependency) 추가하기 https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa/2.7.4 빨간색 네모 부분을 복.. limestory07.tistory.com 실습하기 Model 만들기 java → com.example.layout →model 폴더를 만듭니다. model 폴더 안에 ..
2022.10.05