CentOS Jenkins 설치
1. Jenkins 설치 확인 [root@localhost ~]# yum list installed jenkins Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.navercorp.com * extras: mirror....
1. Jenkins 설치 확인 [root@localhost ~]# yum list installed jenkins Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.navercorp.com * extras: mirror....
1. jdk 설치 https://dejavuhyo.blog.me/221454888121 https://dejavuhyo.blog.me/221469375994 2. 계정 생성 Nexus를 root 계정으로 설치하는 것을 권장하지 않기 때문에 nexus 계정을 만든다. [root@localhost ~]...
1. SVN 설치 확인 [root@localhost ~]# yum list installed subversion Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.navercorp.com * extras: mirror.n...
IntelliJ에서 GitLab 프로젝트 받기 및 모듈 추가 방법 1. VCS → Get from Version Control 2. Git URL 및 Directory 설정 3. 새로운 인텔리제이 창 열기 여부 확인 단일 모듈은 yes, 기존 모듈에 추가는 no 4. Project Structure 창 열기 (ctrl + a...
1. 개요 @Async 어노테이션을 bean에 넣으면 별도의 쓰레드에서 실행된다. 이를테면 호출자는 호출된 메소드가 완료될 때까지 기다릴 필요가 없다. 2. Async 기능 사용 자바 설정으로 비동기 처리를 사용하려면 간단히 설정 클래스에 @EnableAsync를 추가만 하면 된다. 3. 적용 DemoApplication.java imp...
1. Maven Dependency 설정 <dependency> <groupId>org.bgee.log4jdbc-log4j2</groupId> <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId> <version>1.16</v...
1. Array 사용 Controller String[] array = {"a", "b", "c"}; demoVO.setDemoArray(array); VO public class DemoVO { private String[] demoArray; public String[] getDemoArray() { ...
1. Gson Download Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Gson can ...
1. MyBatis란? 마이바티스(MyBatis)는 자바 퍼시스턴스 프레임워크의 하나로 XML 서술자나 애너테이션(annotation)을 사용하여 저장 프로시저나 SQL 문으로 객체들을 연결시킨다. 마이바티스는 개발자가 지정한 SQL, 저장프로시저 그리고 몇가지 고급 매핑을 지원하는 퍼시스턴스 프레임워크이다. 마이바티스는 JDBC로 처리하는 상당부분...
1. Eclipse rdf4j란? Eclipse RDF4J (이전의 OpenRDF Sesame)는 RDF 데이터를 저장, 조회 및 분석하기 위한 오픈 소스 프레임워크이다. 네덜란드 소프트웨어 회사 Aduna가 1999년부터 2002년까지 실행한 시맨틱 웹 프로젝트인 “On-To-Knowledge”의 일부이다. in-memory triplestore와...