일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- OSS
- KAKAO
- 인터넷의이해
- Resnet
- C언어
- Database
- ICT멘토링
- Powershell
- Python
- Spring Boot
- Kubernetes
- Github
- 국가과제
- 크롤링 개발
- ChatGPT
- Rocky Linux
- cloud
- API
- 고등학생 대상
- Docker
- rnn
- Machine Learning
- git
- Spring
- suricata
- VSCode
- GoogleDrive
- 코딩도장
- LINUX MASTER
- colab
- Today
- Total
목록2024 Tourism Data Utilization Contest/Spring Boot 2 (4)
코딩두의 포트폴리오
Window > Preferences로 이동.General > Editors > Text Editors > SpellingEnable spell checking 체크 해제혹시 다음에 사용 시
Spring Security 설정을 통한 비활성화 디렉토리 경로[ src/main/java/com/nurigo/service/config/SecurityConfig.java ]package com.nurigo.service.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.security.config.annotation.web.builders.HttpSecurity;import org.springframework.security.config.annotation.web.configuration.En..
스프링부트 프로젝트의 src/main/resources 디렉토리에는 static과 templates 존재 디렉토리 구조src├── main│ ├── java│ ├── resources│ │ ├── static│ │ │ ├── css│ │ │ │ └── style.css│ │ │ ├── js│ │ │ │ └── script.js│ │ │ └── images│ │ │ └── logo.png│ │ ├── templates│ │ │ └── index.html│ │ └── application.properties└── test static정적인 리소스 파일(CSS, JS, 이미지 등)을 저장스프링..
이전의 프로젝트에서 필요 없는 부분 삭제다수의 오류 발생호환성 문제등등 여러 요인으로 프로젝트 재생성 웹서비스에 필요한 의존성들 추가 선택 Spring Boot DevTools:개발 생산성을 높이기 위한 도구. 코드 변경 시 애플리케이션을 자동으로 재시작Lombok:반복적인 코드 작성을 줄여주는 라이브러리로, 어노테이션을 통해 Getter, Setter, Constructor 등을 자동 생성Spring Boot Actuator:애플리케이션의 모니터링 및 관리를 위한 엔드포인트를 제공하여 상태 정보, 메트릭스, 힙 덤프 등을 쉽게 확인Spring Data JPA:JPA(Java Persistence API)를 사용하여 데이터베이스 접근을 쉽게 해주는 라이브러리ORM(Object-Relational Map..