전체보기(316)
-
[2019.03.05] 자바 추가
멀티 모듈 = 프로젝트 in 프로젝트 부모 모듈의 pom.xml 부모 모듈에는 자식 모듈들이 곹옹적으로 사용하는 디펜던시를 추가된다. parentFoo pom module1 module2 module3 자식 모듈의 pom.xml parentFoo com.company.project 1.0-SNAPSHOT ../pom.xml 응용 : module1 를 컨트롤러로 전용으로 사용할 수 있다. module2 를 DTO, DAO, Service 전용으로 사용 할 수 있다. iml 파일 IntelliJ에서 만든 모듈 파일 모듈 경로, 종속성, 기타 설정을 저장함 J2SE Standard Edition : 일반용 자바 프로그램 개발용 J2EE Enterprise Edition : 기업용 자바 프로그램 개발용 - JS..
2019.03.05 -
[2019.03.05] 모니터링 커맨드
topCPU, Mem 사용량 확인 가능 free디스크 용량 확인가능 psprocess status cd /proccd /proc/stat cat /parc/meminfo실시간으로 이 경로들에 하드웨어 사용량을 저장 이곳에 저장되는 데이터는 시스템 메트릭에 대한 raw 데이터 쉘스크립트 #!/usr/bin/env bash ~~으로 작성 ./~.sh으로 실행
2019.03.05 -
[2019.03.05] 배치 사용법
cron : Command Run ONcrontabcrontab -l예약리스트 출력crontab -e예약리스트 편집crontab -r 예약리스트 삭제crontab은 crontab -e로 cron에 들어가 vi 편집기로 직접 작성하는 방식임 * * * * * root myScript.sh 분 시 일 월 요일 사용자 명령어 / 는 주기를 뜻한다.- 은 구간을 듯한다. 5 * * * * (0시 5분), (1시 5분), (2시 5분), (3시 5분)... /5 * * * * (0시 5분), (0시 10분), (0시 15분), (0시 20분)... 5-6 * * * * (0시 5분), (0시 6분), (1시 5분), (1시 6분)... 예제1. ~/Desktop/ShellScript/dateRecoder.sh를 ..
2019.03.05 -
[2019.03.05] YAML
YAML - 읽기 쉽다.- 데이터 포맷중 하나다. - Key - value 구조다. - JSON은 yaml의 일종이다. member: id: "kok202" pwd: null male: true money: 1000 email: &connection "kok202@naver.com" description: | Hello world Bye world address: > korea Gyeongi hobbies: - drawing - movies favoriteGame: ["lol", "starcraft"] favoriteFodd: - name: cider money: 800 - name: coke money: 1000 connection: *connection 탭으로 레벨을 구분할 수 있다.탭으로 구분된 m..
2019.03.05 -
[2019.03.05] gradle compile vs implementation
Compile과 implementation의 차이점dependencies{compile 'com.android.support.constraint:constraint-layout:1.1.3'implementation 'com.android.support.constraint:constraint-layout:1.1.3'} 참조 : https://code.i-harness.com/ko-kr/q/2a6ea42 종속 관계app -> myandroidlibraray -> myjavalibraryapp : myandroidlibraray : myjavalibrary어플 : 안드로이드 라이브러리 : 자바 라이브러리 app TextView tv = findViewById(R.id.tv_hello_world); tv.set..
2019.03.05 -
[2019.03.05] Docker-machine
Docker on macOSError : Cannot connect to the Docker daemon at unix:... Is the docker daemon running? Docker 클라이언트는 바이너리 코드일뿐이다. Docker 는 리눅스의 특정 기능을 사용해서 동작하는 프로그램이기 때문에 unix 기반의 mac OS 에서 바로 돌릴 수 없다. Docker-machine을 설치해야한다. 근데 Docker-machine은 VM 환경이 필요하다. => VM환경이 싫어서 Docker를 쓰려는데 mac에서 Docker를 돌리려면 VM이 필요한 아이러니 참조 : https://stackoverflow.com/questions/21871479/docker-cant-connect-to-docker-dae..
2019.03.05