반응형 분류 전체보기77 diff를 이용한 파일 비교 diff를 이용하여 파일 내용을 비교할 수 있다. 스크립트를 통해서 파일내용이 다를때 처리를 할 수 있다. 파일 a aaaaa 파일 b bbbbb 파일 c aaaaa diff.sh echo "diff a b" diff a b DIFF_RESULT=$? echo "diff a b result : ${DIFF_RESULT}" if [ ${DIFF_RESULT} -eq "0" ] then echo "a and b are same files" else echo "a and b are differnt files" fi echo -e "\n\ndiff a c" diff a c DIFF_RESULT=$? echo -e "diff a c result : ${DIFF_RESULT}" if [ ${DIFF_RESULT} .. 2020. 5. 8. gradle_user_home 디렉토리 설정 출처 https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_environment_variables Build Environment Configuring an HTTP or HTTPS proxy (for downloading dependencies, for example) is done via standard JVM system properties. These properties can be set directly in the build script; for example, setting the HTTP proxy host would be done with System.setPrope docs.gradle.org 별도로 gr.. 2020. 4. 23. Springboot change timezone Spring boot 실행시 timezone 변경 Springboot 구동 완료시 기본 timezone을 설정 @EnableAutoConfiguration public class SeaSpringApplication { private static final String timeZone = "Asia/Singapore"; @PostConstruct public void init(){ // java.util.Date default timezone setting TimeZone.setDefault(TimeZone.getTimeZone(timeZone)); // joda.time.DateTime default timezone setting DateTimeZone.setDefault(DateTimeZone.get.. 2020. 4. 21. spring boot cannot find main class STS에서 boot dashboard를 이용하여 어플리케이션을 실행했는데 아래와 같은 메시지가 출력되면서 실행이 안됨 기본 클래스 xxx.yyyy.bbb.Application 찾거나 로드할 수 없습니다. 작업한건 gradle 에서 라이브러리 몇개 추가한거 밖에 없는데 불과 1분전에 구동된 서버가 구동이 안됨 이리 저리 삽질을 하다가 6시간 뻘짓을 하다가 구글링으로 찾아냄 https://stackoverflow.com/questions/28451120/spring-boot-program-cannot-find-main-class/52005196#answer-60035629 Spring Boot Program cannot find main class I have a program which runs as a .. 2020. 3. 18. 이전 1 ··· 10 11 12 13 14 15 16 ··· 20 다음 반응형