마주쳤던 에러 해결 모음49 springboot @TestPropertySource 설정하는 방법 문제 상황 : 아래처럼 yml 파일 만들어서 @TestPropertySource 설정하려 하였으나 설정이 되지 않았음. @TestPropertySource(locations = "classpath:application-test.yml") 해결법 1. .yml 파일을 사용하려면 아래처럼 설정을 해야 함 @TestPropertySource(properties = {"spring.config.location = classpath:application-test.yml"}) 2. 아니면 .properties 파일을 만들어서 아래처럼 설정하면 됨 @TestPropertySource(locations = "classpath:application-test.properties") 2022. 6. 20. window mysql/maria db 데이터 저장 default directory 위치 window의 경우 mysql, maria db Default 데이터 저장 경로는 C:/maria/data C:/mysql/data 이다. 2022. 6. 18. 윈도우에서 test 없이 스프링부트 gradle 빌드 하는 명령어 gradlew clean build --exclude-task test 2022. 6. 18. Failed to connect and initialize SSH connection. Message: [Failed to change to remote directory 젠킨스 설정 에러 에러 문구 : jenkins.plugins.publish_over.BapPublisherException: Failed to connect and initialize SSH connection. Message: [Failed to change to remote directory [/home/user/jenkins_build]] 에러 해결 : 에러 Message 그대로 디렉터리 경로를 잘못 적어서 발생한 에러 (ec2-user인데 user로 잘못 적음) /home/user/jenkins_build -> /home/ec2-user/jenkins_build 수정하여 Connection Success 확인 2022. 6. 16. 이전 1 ··· 5 6 7 8 9 10 11 ··· 13 다음