Loading...
2023. 2. 2. 03:42

gitlab 프로젝트 CI/CD환경 구축하기 1편 -jenkins 설치-

다음 링크에 들어가 LTS 최신버전을 다운받는다 Jenkins Jenkins The Jenkins project would like to take a moment and share deep gratitude to our sponsors. Sponsorship of the Jenkins project is key to the maintenance and development of Jenkins. There are different ways in which our sponsor organizations support the Jenki www.jenkins.io LTS는 안정화된 마지막 버전을 뜻한다 LTS가 아닌 최신버전은 말 그대로 최신버전인데 아직 발견하지 못한 버그가 있을 수 있음 다운 받은 msi파일..

2023. 1. 29. 03:02

자바 기본 배우기 -main method, 주석, 출력문-

1. main method java 실행시 가장 먼저 호출되는 부분 application에서 main() 메소드가 없다면 절대로 실행되지 않는다 즉 application의 시작은 특정 클래스의 main()을 실행하는 것이다 형태는 다음과 같이 고정된 형태이다 public static void main(String[] args){} 2. 주석(comment) 자바는 3가지 주석 제공 //는 해당 줄을 주석 처리 /* */은 해당 범위를 모두 주석 처리(여러 줄 주석) /** */은 documentation api를 위한 주석 이는 어떤 함수나 class 만들때... 그것이 무슨 기능인지 설명하는것 파이썬 def 정의할때 바로 아래에 """ """으로 설명하는거 있잖어 위에 노란색 부분이 /** */로 들어..