일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ChatGPT
- 국가과제
- GoogleDrive
- Python
- C언어
- cloud
- colab
- Machine Learning
- LINUX MASTER
- 인터넷의이해
- Powershell
- Kubernetes
- VSCode
- 크롤링 개발
- suricata
- Database
- Spring Boot
- OSS
- Resnet
- Spring
- KAKAO
- 고등학생 대상
- Rocky Linux
- git
- Docker
- API
- 코딩도장
- rnn
- ICT멘토링
- Github
- Today
- Total
목록2024 Tourism Data Utilization Contest (13)
코딩두의 포트폴리오
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..
컨트롤러에서 HTML 페이지 반환하게끔 수정src/main/java/com/example/demo/controller[추가할 메소드 부분]package com.example.demo.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.GetMapping;import java.util.List;import com.example.demo.entity.TouristSpot;import com.exam..
[코드 작성] Tourist Spots Tourist Spot Name: Description
디펜던시(Dependency)란?프로젝트에서 필요한 외부 라이브러리나 프레임워크로써-> Maven, Gradle 빌드 도구로 관리하여 다 기능 사용 가능 # 'pom.xml' 파일에 작성하여 사용 디펜던시 역할?필요한 외부 라이브러리 쉽게 통합ex) 데이터베이스 통합, 웹 애플리케이션 개발 등등 Thymeleaf 디펜던시 추가pom.xml 파일에 Thymeleaf 디펜던시를 추가 -> HTML 템플릿 렌더링 기능[추가할 부분] org.springframework.boot spring-boot-starter-thymeleaf org.springframework.boot spring-boot-starter-web [추가한 xml 파일] 4.0.0 org.springframework..
데이터 로더(Data Loader)란?스프링 부트 시작 시 자동으로 실행기본 데이터를 DB에 불러오는 데(삽입하는 데) 사용하는 클래스보통 'commandLineRunner' 인터페이스를 구현 package com.example.demo;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.CommandLineRunner;import org.springframework.stereotype.Component;import com.example.demo.entity.TouristSpot;import com.example.demo.repository.TouristSpotRepository;@Comp..