Java(129)
-
Spring(Boot) 사용법
App 실행 후, 자동 실행 적용 https://osc131.tistory.com/139 [Spring] App 구동 후 자동 작업 실행 작성일자 : 2020.02.23 목표 : Spring App 구동 후 특정 작업 실행 1. ApplicationRunner 사용 (Parameter 활용 가능) package com.example.demo.test; import org.springframework.boot.ApplicationArguments; im.. osc131.tistory.com
2022.02.25 -
java Tip
날짜 연산 https://codechacha.com/ko/java-examples-add-two-dates/ Java - Date에 년,월,일을 더하고 빼는 방법 Date에 날짜를 더하는 다양한 방법에 대해서 알아보겠습니다. Date 객체에 월, 일을 추가하는 방법을 알아보겠습니다. 그리고 두개의 Date 객체를 더하는 방법을 알아보겠습니다. Date는 1970년을 기 codechacha.com String day = "20220101"; DateFormat df = new SimpleDateFormat("yyyyMMdd"); try { Calendar cal = Calendar.getInstance(); cal.setTime(df.parse(day)); cal.add(Calendar.DATE, 1); ..
2022.02.02 -
STS 에러
Build path specifies execution environment JavaSE-11. There are no JREs installed in the workspace that are strictly compatible with this environment.버전이 맞지 않아서 발생한 경고메인 메뉴 > Window > Preferences > Java > Installed JREs > AddPC에 설치한 JAVA_HOME 디렉토리 셋팅rejected non-fast-forwardhttps://dogcowking.tistory.com/417 GIT PUSH 중 충돌 (rejected non-fast-forward)GIT PUSH 중 충돌 (rejected non-fast-forward) * 상황 ..
2022.01.31 -
pom.xml 셋팅
STS Jre System Library 버전 셋팅 properties의 java.version으로 셋팅함 UTF-8 UTF-8 11
2022.01.31 -
maven 에러
[ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or :[:]:. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, proces..
2022.01.30 -
java 설치
openjdk11 설치 https://hhseong.tistory.com/197 [CentOS7] openJDK 11 설치 및 자바 버전 변경하기 JAVA 1.8 에서 늘 개발하다가 이번에 JDK 버전을 올리게 되었습니다 ! (이제와서?!) 1. yum 으로 설치 가능한 jdk 확인 yum list java*jdk-devel 2. java-11-openjdk-devel.x86_64 설치 yum install java-11-open.. hhseong.tistory.com yum list java*jdk-devel sudo yum install java-11-openjdk-devel.x86_64 -y java -version javac -version Alpine openjdk11 https://pkgs.a..
2022.01.30