[Jenkins] Groovy 스크립트로 JOB 이름 일괄 변경하기
개발 Phase등,, 변경에 따라 JOB네임을 일괄 변경해야 할 경우 아래와 같이 작성하여 Script실행 ^^;; // Groovy script to rename job in Hudson import hudson.model.*; def QA_JOB_PATTERN = ~/^QA_.*$/; //find all...
황트루치
개발 Phase등,, 변경에 따라 JOB네임을 일괄 변경해야 할 경우 아래와 같이 작성하여 Script실행 ^^;; // Groovy script to rename job in Hudson import hudson.model.*; def QA_JOB_PATTERN = ~/^QA_.*$/; //find all...
Git 브랜치 Diff로 변경점을 파악하여 파일리스트만 따로 빼낸다. git diff –name-only origin/master origin/develop > /home/fileList.lst 재가공이 필요하다면 필요에 따라 sed써서 replace.. sed -i ‘s/src\/main\/webapp\//\/www\/html\//g’ /home/fileList.lst 3. Active Choices...
ssh-keygen -f $HOME/.ssh/id_rsa -t rsa -N ” https://linux.die.net/man/1/ssh-keygen ssh-keygen [-q] [-b bits] -t type [-Nnew_passphrase] [-C comment] [-foutput_keyfile] ssh-keygen -p [-P old_passphrase] [-Nnew_passphrase] [-f keyfile] ssh-keygen -i [-f input_keyfile] ssh-keygen -e [-f input_keyfile] ssh-keygen -y [-f input_keyfile] ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile] ssh-keygen -l [-f input_keyfile] ssh-keygen -B [-f input_keyfile]...
API서비스가 복잡하게 증가하다보면 버전관리 문제는 피할수가 없다. 나중에 생각할게 아니라 규칙을 정해 미리 적용한다면, 구웃. 버전 명명 규칙을 굳이 정하자면 아래와 같을 수 있고 /api/v3/greetings // 서비스 수준 /api/v3/greetings/v3.1/hello //...
spring.security.user.name=user spring.security.user.password=1234 package com.htrucci.bootsecurity; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication public class BootsecurityApplication { public static void main(String[] args) { SpringApplication.run(BootsecurityApplication.class, args); } } @RestController class...
MAC RabbitMq 설치, springboot HelloWorld 예제 http://www.rabbitmq.com/install-standalone-mac.html brew설치되어 있다고 가정하고 터미널에서 아래 명령어 실행 [simterm] $ brew install rabbitmq …..설치완료 후 $ cd /usr/local/sbin $ ./rabbitmq-server 구동완료 [/simterm] spring.rabbitmq.host=localhost spring.rabbitmq.port=5672...
SpringBoot + Junit 예제 import static org.assertj.core.api.Assertions.assertThat; @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class BootrestApplicationTests { @Autowired private TestRestTemplate restTemplate; @Test public void testSpringBootApp() throws JsonProcessingException, IOException{ String body = restTemplate.getForObject(“/”,...
https://github.com/wso2/msf4j WSO2 마이크로 서비스 프레임워크 (MSF4J) WSO2 Microservices Framework for Java (MSF4J)는 마이크로 서비스를 개발 및 실행하기 위한 경량의 고성능 프레임 워크입니다. WSO2 MSF4J는 최고 성능의 경량 Java 마이크로 서비스...
jupyter notebook에서 모델학습을 시키다 페이지 상태 변경이 일어나면 output에서 더 이상 학습진행 상황을 못볼수가 있다. 아래와 같이 로깅 콜백을 걸어두면 매 epoch마다 파일 로깅을 진행하여, 브라우저를 닫아버린 뒤에도 학습 상황을...
More
최근 댓글