목록분류 전체보기 (228)
main

톰캣 설정 1. Window > Preferences > Server > Runtime Environments > Add... 2. Apache Tomcat > v9.0 선택 3. tomcat 9.0 이 설치된 경로 선택 4. Apply and Close tomcat 서버의 기본 포트는 8080으로 Oracle 과 동일해서 충돌이 많이 발생하므로 포트를 8081으로 변경해준다. 5. tomcat 서버 더블클릭 6. Port Number를 8081로 변경해주고 저장한다. Java version 11 설정 1. Project Properties > Project Facets > Java 11버전으로 바꿔준다. > Apply. pom.xml 수정 (각각의 버전은 Maven Repository에서 확인하여 설정..

* Spring MVC Project 안 보여서 그냥 STS3 따로 설치해서 사용했음. 1. Help > Eclips Marketpalce > Spring Tools 3 Add-On for Spring Tools4 설치 2. 기존에 설치된 플러그인과 충돌이 있는것으로 보인다. 설치를 취소하려면 cancel을 클릭, sts3 for sts4 설치를 진행하려면 update my installation~~~ 선택한다. 이때 Spring Tool Suite 4 Main Feature이 삭제된다. 3. 설치가 끝나면 STS 재시작 후, spring legacy project 생성 가능

톰캣 공식 사이트 https://tomcat.apache.org/whichversion.html Apache Tomcat® - Which Version Do I Want? Apache Tomcat® is an open source software implementation of a subset of the Jakarta EE (formally Java EE) technologies. Different versions of Apache Tomcat are available for different versions of the specifications. The mapping between the specifications tomcat.apache.org 설치 및 설정 1. Java version에 맞는 T..

설치 경로 https://www.h2database.com H2 Database Engine (redirect) H2 Database Engine Welcome to H2, the free SQL database. The main feature of H2 are: It is free to use for everybody, source code is included Written in Java, but also available as native executable JDBC and (partial) ODBC API Embedded and client/server mo www.h2database.com 설치 및 설정 1. 설치 파일 다운로드 2. install 3. h2 console 실행 4. 접속 경로를..

에러 Springboot 에서 Test case 작성 중 fail() 메소드 사용 할 때 에러가 발생하였다. import static org.assertj.core.api.Assertions.*; import static org.junit.jupiter.api.Assertions.*; fail("에러가 발생해야 합니다."); Ambiguous method call. Both 원인 동일한 이름을 가진 method가 중복 되어서 발생한 에러. 두 개의 Assertions 가 모두 static으로 import 되어 있어서 발생하였다. 해결 import static org.assertj.core.api.Assertions.*; import static org.junit.jupiter.api.Assertions...