일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 코드스테이츠 백엔드 교육과정
- 백내장 다초점렌즈 삽입술
- 코드스테이츠 백엔드 후기
- Gamsgo
- 금감원 백내장 민원
- Java
- 보험금 지급거절
- 금융감독원 민원신청
- 금감원
- Spring
- 코드스테이츠 백엔드 부트캠프 합격
- 코드스테이츠 부트캠프 합격 후기
- 해시
- 백준 알고리즘
- 백내장 금감원
- 코테 합격후기
- CodeState 후기
- 메서드
- 코드 스테이츠 백엔드 교육과정
- 코드스테이츠 부트캠프
- HLB
- 코드스테이츠 합격
- 겜스고
- 백내장
- codestates 국비지원 1기 합격 후기
- 자바
- 에이치엘비
- Code States 백엔드 합격 후기
- 금융감독원
- 코드스테이츠 합격 후기
Archives
- Today
- Total
개발하는 동그리
For queries with named parameters you need to use provide names for method parameters. Use @Param for query method parameters, or when on Java 8+ use the javac flag -parameters.; nested exception is java.lang.IllegalStateException: For queries with name.. 본문
IT 정보/Error
For queries with named parameters you need to use provide names for method parameters. Use @Param for query method parameters, or when on Java 8+ use the javac flag -parameters.; nested exception is java.lang.IllegalStateException: For queries with name..
개발하는 동그리 2022. 8. 31. 21:17반응형
public interface PostsRepository extends JpaRepository<Posts, Long> {
@Modifying
@Query("update Posts p set p.view = p.view + 1 where p.postsId = :postsId")
int updateView(Long postsId);
}
Repository Query 오류 발생시
For queries with named parameters you need to use provide names for method parameters. Use @Param for query method parameters, or when on Java 8+ use the javac flag -parameters.; nested exception is java.lang.IllegalStateException: For queries with named parameters you need to use provide names for method parameters. Use @Param for query method parameters, or when on Java 8+ use the javac flag -parameters.
아래와 같은 오류가 뜬다.
이때 해결 방법은
public interface PostsRepository extends JpaRepository<Posts, Long> {
@Modifying
@Query("update Posts p set p.view = p.view + 1 where p.postsId = :postsId")
int updateView(@Param("postsId") Long postsId);
}
아래 코드와 같이 @Param("postsId") 을 입력해주면 해결 된다.
반응형