[CentOs] JDK 설치
2021. 5. 21. 11:39
DevOps
해당 링크 접속 https://www.oracle.com/kr/java/technologies/javase/javase-jdk8-downloads.html 1. 해당파일 다운로드 후 /usr/local에 넣기 2. tar -zxvf jdk-8u291-linux-x64.tar.gz 3. ln -s ./jdk1.8.0_291 ./jdk1.8
[Linux] 심볼릭 링크 (Symbolic link)
2021. 5. 21. 11:25
DevOps
ln -s 대상 심볼릭링크로지정할이름 ex) ln -s jdk1.8.0_291 jdk1.8
[JAVA] Math
2021. 5. 21. 10:15
자바
Math.min 두수 중 더 작은수 출력 System.out.println(Math.min(10, 100)); 10 Math.max 두수 중 더 큰수 출력 System.out.println(Math.max(10, 100)); 100
[Spring Boot] 4. InteliJ 정적 컨텐츠 방식, MVC, API
2021. 5. 21. 00:01
스프링
정적 컨텐츠 방식 static - hello-static.html 생성 hello-static.html 정적 컨텐츠 입니다. MVC 방식 HelloController package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class HelloController { @GetMapping("hell..
[Spring Boot] 3. InteliJ 빌드
2021. 5. 20. 23:30
스프링
cmder 설치 https://aamoos.tistory.com/253 cmder 설치 — 일라얌의개발블로그 aamoos.tistory.com Window일 경우 cmder 실행 - 빌드할 프로젝트 폴더 - gradlew.bat build 입력 빌드가 잘안되면 gradlew.bat clean build -> 아래에 build 폴더가 생성된거를 볼수 있음 build/libs 폴더 안에 접속해서 java -jar 빌드된 jar파일.jar를 입력 ex) java -jar hello-spring-0.0.1-SNAPSHOT.jar -> 해당 jar가 8080 port로 start된것을 볼수 있음 서버 stop ls -arlth
cmder 설치
2021. 5. 20. 23:19
소프트웨어 설치
해당 url 접속 https://cmder.app/ Cmder | Console Emulator Total portability Carry it with you on a USB stick or in the Cloud, so your settings, aliases and history can go anywhere you go. You will not see that ugly Windows prompt ever again. cmder.app Download Full 클릭 받은 파일에서 Cmder 파일 열기 cmd 콘솔이 리눅스처럼 사용할수 있게 됨
[SPRING BOOT] 2.InteliJ Hello 찍기
2021. 5. 20. 22:05
스프링
resources - static - index.html 생성 index.html Hello hello controller - hello 찍기 1. controller 패키지 만들고 안에 HelloController 생성 2. resources - templates 폴더안에 hello.html 생성 HelloController.java package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class ..
[JAVA] toCharArray
2021. 5. 20. 13:54
자바
String str = "Hello World"; char[] charArr = str.toCharArray(); [0] = H [1] = e [2] = l [3] = l [4] = o [5] = " " [6] = "W" [7] = "o" [8] = "r" [9] = "l" [10] = "d"