일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- springboot
- java version
- easy
- el1008e
- aws
- 스프링부트테스트
- Java 1.8
- No tests found for given includes
- java 여러개 버전
- java 11
- error
- LeetCode
- yum install java
- mac os git error
- no sources given
- log error
- java 1.8 11
- property or field 'jobparameters' cannot be found on object of type
- AWS CLI
- Medium
- maybe not public or not valid?
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- JUnit
- java 버전 변경
- parse
- querydsl no sources given
- springboottest
- java
- OpenFeign
- springbatch error
- Today
- Total
목록전체 글 (116)
쩨이엠 개발 블로그
Spring batch에서 query를 돌리는 도중 에러가 발생했다 org.springframework.dao.InvalidDataAccessApiUsageException: No sources given at org.springframework.orm.jpa.EntityManagerFactoryUtils.convertJpaAccessExceptionIfPossible(EntityManagerFactoryUtils.java:371) ~[spring-orm-6.0.8.jar:6.0.8] at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:234) ~[sprin..
Spring batch에서 ItemReader를 쓰다 발견한 에러 EL1008E: Property or field 'jobParameters' cannot be found on object of type 'org.springframework.beans.factory.config.BeanExpressionContext' - maybe not public or not valid? 이 경우엔 jobParameters를 받는 bean의 scope를 지정해주지 않아 발생하는 에러로@StepScope @JobScope를 넣어주면 된다 @Bean @StepScope public RepositoryItemReader trxReader(@Value("#{jobParameters[targetDate]}"..

강업이 아닌 이상 업그레이드를 하지 않는데 14가 나온 지금 12로 버티려니 충돌나는게 꽤나 있다그래서 오랜만에 업그레이드를 해보았습니다 1. 현상그리고 intellj를 켰는데이런 에러가 나는거에요?음음 뭔가 잘못되었나보다$ git pull 이건 되겠지 하고 명령어를 친 나에게 돌아온 건 xcrun 에러xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 2. 원인MAC OS를 업그레이드하면 자주 나는 에러라고 합니다CommandLineTool을 갑자기 못찾게 되는 에러라서 xcode 업그레..
1. 현상JpaRepository에서 nativeQuery로 update 쿼리를 실행하던 중 에러가 났다 Error 내용Caused by: java.sql.SQLException: Statement.executeQuery() cannot issue statements that do not produce result sets. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130) ~[mysql-connector-j-8.0.33.jar:8.0.33] at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:98) ~[mysql-connector-j..

SSL 프로토콜이란?Secure Sockets Layer의 약자로 웹서버와 웹 브라우저 간의 안전한 통신을 제공하는 보안프로토콜SSL은 인터넷 상에서 데이터 전송 시 보안과 개인정보 보호를 위해 사용된다 SSL 주요 기능1. 암호화(Encryption) : SSL은 데이터를 암호화하여 제 3자가 데이터를 읽을 수 없도록 보호한다2. 인증(Authentication) : SSL은 서버와 클라이언트 간의 상호인증을 통해 상대방이 누구인지 확인할 수 있으며, 이를 통해 중간자 공격과 같은 보안 위협을 방지할 수 있다.3. 데이터 무결성(Data Integrity) : SSL은 데이터가 전송 중에 변경되거나 조작되지 않았음을 보장한다. 서버에 대한 SSL 허용 프로토콜을 확인하는 방법1. Terminal에서 o..