목록전체 글 (19)
helloRecodes

1. Lombok ? get/set 메소드, toString 등을 간단하게 어노테이션으로 설정할 수 있도록 도와주는 유틸리티 2. Lombok 설치 https://projectlombok.org Project Lombok projectlombok.org 상단 Download > Download 1.18.22 Specify location > Specify location : 적용 원하는 툴의 실행파일(exe) 위치 찾아서 등록 > Install/Update Quit Installer => Lombok 설치 성공

플러그인 설치 오류 An error occurred while collecting items to be installed session context was:(profile=DefaultProfile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing: ... 해결 방법 Help > Install new software > "Contact all update sites during install to find required software" 체크 해제

1. 톰캣 설치 https://tomcat.apache.org/ Apache Tomcat® - Welcome! The Apache Tomcat® software is an open source implementation of the Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language, Jakarta WebSocket, Jakarta Annotations and Jakarta Authentication specifications. These specifications are part of the tomcat.apache.org Download 원하는 버전 선택 > Core : 운영체제에 맞게 zip파일 다운로드 진행 원하는 위치에 압축 해..

Spring Legacy Project 생성 방법 Help > Eclipse Marketplace... Find : sts > Spring Tools 3 Add-On for Spring Tools 4 3.9.18.RELEASE > Install Confirm "I accept ~" 체크 > Finish 화면 하단 설치 진행 표시 Restart Now New > Ohter... > Spring > Spring Legacy Project => Spring Legacy Project 생성 성공 **Spring Legacy Project가 생성되지 않을 경우 추가 시도 Help > Install New Software... Work with : Spring Tool Suite 4 - https://downloa..

1. STS4 최신 버전 다운로드 https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io 운영체제에 맞게 다운로드 진행 2. STS4 이전 버전 다운로드 하단 "PROJECT WIKI" "Previous Releases Eclipse" 원하는 sts4 버전 다운로드 3..

Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 해결 방법 1 Edit > Preferences... SQL Editor > Safe Updates 체크 해제 > OK > MySQL Workbench 재시작 해결 방법 2 원하는 쿼리 실행 전 다음 쿼리 실행(일시적 Safe Updates 해제) set sql_safe_updates=0;

1. 환경 변수 설정 [시스템 환경 변수 편집] 환경 변수 시스템 변수 > Path 선택 > 편집 > 새로 만들기 > MySQL 설치 경로(대부분 Program Files에 위치) C:\Program Files\MySQL\MySQL Server 8.0\bin > 확인 2. 적용 체크 명령 프롬프트 실행 mysql 입력 > ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) =>환경 변수 등록 성공 (에러는 비밀번호 없어서 접속할 수 없음을 뜻함) mysql -u root -p 입력 > Enter password: MySQL 설치시 설정했던 Root Password 입력 => mysql 접속 성공 * MySQL..

1. MySQL 다운로드 https://www.mysql.com/ MySQL Over 2000 ISVs, OEMs, and VARs rely on MySQL as their products' embedded database to make their applications, hardware and appliances more competitive, bring them to market faster, and lower their cost of goods sold. Learn More » www.mysql.com 상단 "DOWNLOADS" 하단 "MySQL Community (GPL) Downloads" GPL : General Public License https://dev.mysql.com/download..