일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- suricata
- OSS
- ICT멘토링
- Rocky Linux
- LINUX MASTER
- GoogleDrive
- colab
- Python
- Database
- Docker
- 코딩도장
- rnn
- Spring
- Web
- VSCode
- Spring Boot
- 고등학생 대상
- 크롤링 개발
- 인터넷의이해
- C언어
- Machine Learning
- Github
- KAKAO
- API
- Powershell
- cloud
- git
- ChatGPT
- 국가과제
- Resnet
- Today
- Total
목록분류 전체보기 (161)
코딩두의 포트폴리오

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..

졸업하기 전 취득하면 좋을 만한 자격증에 대해 정리해볼 생각국내정보처리기사https://www.q-net.or.kr/crf005.do?id=crf00503&jmCd=1320 국가자격 종목별 상세정보 | Q-net www.q-net.or.krSW 개발, 시스템 관리, 정보 보안 등 다양한 IT 분야에서 요구하는 자격증응시 조건: 4년제 대학 졸업(예정)자유효기간 X 정보처리산업기사https://q-net.or.kr/crf005.do?id=crf00505&jmCd=2290 국가자격 종목별 상세정보 | Q-net q-net.or.kr 리눅스마스터https://www.ihd.or.kr/introducesubject1.do KAIT 자격검정인사 고과 반영 ㈜KT, 네트웍오앤에스㈜, 신한데이터시스템, 에스큐브아이,..
컨트롤러에서 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..