묻고 답해요
161만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨Vue.js 완벽 가이드 - 실습과 리팩토링으로 배우는 실전 개념
`router-link` 에 `to` 가 아닌 `v-bind:to` 를 사용해야하는 이유가 무엇인가요?
router-link 에 to 가 아닌 v-bind:to 를 사용해야하는 이유가 무엇인가요? 가파라미터(:id) 가 들어가서 그런건가요??
-
해결됨[코드캠프] 부트캠프에서 만든 고농축 프론트엔드 코스
tsx 파일 오류 질문입니다.
tsx 파일로 확장자명 바꿔도 react import 하라는 오류 뜨는데, import 하지 않고 수정할 방법 없을까요..?구글링 해보면 ts, react 버전 확인하고 tsconfig 파일의 "jsx"부분을 바꾸는데, next 때문에 yarn dev하면 다시 바뀌네요.
-
미해결스프링 시큐리티
섹션5-2 admin 비밀번호가 1111이 아닌가요?
깃허브 브랜치 ch05-01을 받아와서 그대로 실행했는데요 수업 2분40초에 나오는것처럼 admin, 1111 로그인을 하려하니 invalid username or password가 나옵니다. db에 확인해보면 admin아이디는 분명 들어가 있는데 비밀번호가 잘못된걸까요?수업 듣는 시간보다 코드 찾고 하는 시간이 더 오래 걸려 너무 힘드네요..
-
해결됨[코드캠프] 부트캠프에서 만든 고농축 프론트엔드 코스
graphql 사용법이 나온다고 했는데 cache 적용 방법도 강의하나요?
해당 강좌를 구매하고자 검토중인데 graphql 사용법이 나온다고 했는데 cache 적용 방법도 강의하나요?
-
미해결[LV1] 왕초보 이펙트 (VFX) 기초부터 튼튼하게! (UE5, Blender)
이미터의 color 모듈을 검은색으로 수정시 투명하게 나오는 문제
안녕하세요 원띵님! 답변 정말 감사했습니다.덕분에 문제를 해결할 수 있었습니다 ^^! 이번에도 강의와 다르게 만들어지는 문제가 발생하여 질문을 드립니다.강의에서 Color모듈 → 검은색으로 변경 하셔서 똑같이 값을 변경 하였는데위 사진처럼 투명하게 나오는 문제가 발생하였습니다.이미터는 이렇게 설정하였습니다.그리고 다른 문제이지만 파티클이 잔상처럼 남는 문제도 있어서 뷰포트 상의 옵션 문제인지, 컴퓨터의 옵션문제인지도 궁금합니다.감사합니다.
-
미해결iOS SwiftUI AR 증강현실
3d 파일, 애니메이션 사용에 관하여 질문드립니다
단순 궁금점이 생겨 질문드립니다예를 들어, 모델링 파일과 애니메이션파일이 따로 있다고 한다면.let model: [Model] = ["m1", "m2", "m3"]let animation: [Animation] = ["walk", "run", "jump"] model에 animation을 적용할 수 있을까요??아니면, 애니메이션이 포함된 파일로let model: [Model] = ["m1_walk", "m1_run", "m1_jump", "m2_walk", "m2_run", "m2_jump", "m3_walk", "m3_run", "m3_jump"]위와 같이 각각의 애니메이션이 담긴 파일을 따로 만들어줘야 하는 지 궁금합니다
-
미해결따라하면서 배우는 고박사의 유니티 기초
NavigationMesh 응용 질문있어요
해당 그림처럼 플레이어 오브젝트가 더이상 움직이지 않게됩니다... using System.Collections;using UnityEngine;using UnityEngine.AI;public class OffMeshLinkClimb : MonoBehaviour{ [SerializeField] private int offMeshArea = 3; //오프메시 구역 ( Climb) [SerializeField] private float climbSpeed = 1.5f; //오르내리는 이동 속도 private NavMeshAgent navMeshAgent; private void Awake() { navMeshAgent = GetComponent<NavMeshAgent>(); } IEnumerable Start() { while (true) { // IsOnClimb() 함수의 반환 값이 true일 때 까지 반복 호출 yield return new WaitUntil(() => IsOnClimb()); // 올라가거나 내려오는 행동 // 위에가 true 가 되면 ClimbOrDescend() 가 실행된다 yield return StartCoroutine(ClimbOrDescend()); } } public bool IsOnClimb() { // 현재 위치에 있는 OffMeshLink에 있는지 ( true / false ) if (navMeshAgent.isOnOffMeshLink) { // 현재 위치에 있는 OffMeshLink의 데이 OffMeshLinkData linkData = navMeshAgent.currentOffMeshLinkData; //설명 : navMeshAgent.currentOffMeshLinkData.offMeshLink 가 // true 이면 수동으로 생성한 OffMeshLink // false 면 자동으로 생성한 OffMeshLink // 현재 위치에 잇는 OffMeshLink가 수동으로 생성한 OffMeshLink 이고, 장소 정보가 "Climb"이면 if ( linkData.offMeshLink != null && linkData.offMeshLink.area == offMeshArea) { return true; } } return false; } private IEnumerator ClimbOrDescend() { // 네비게이션을 이용한 이동을 잠시 중지한다 navMeshAgent.isStopped = true; // 현재 위치에 있는 OffMeshLink의 시작 / 종료 위치 OffMeshLinkData linkData = navMeshAgent.currentOffMeshLinkData; Vector3 start = linkData.startPos; Vector3 end = linkData.endPos; // 오르내리는 시간 설정 float climbTime = Mathf.Abs(end.y - start.y) / climbSpeed; float currentTime = 0.0f; float percent = 0.0f; while ( percent < 1) { // 단순히 deltaTime만 더하면 무조건 1초 후에 percent가 1이 되기 때문에 // climbTime 변수를 연산해서 시간을 조절한다 currentTime += Time.deltaTime; percent = currentTime/climbTime; // 시간 경과(최대 1) 에 따라 오브젝트의 위치를 바꿔준다 transform.position = Vector3.Lerp(start, end, percent); yield return null; } // OffMeshLink를 이용한 이동 완료 navMeshAgent.CompleteOffMeshLink(); // OffMeshLink 이동이 완료되었으니 네비게이션을 이용한 이동을 다시 시작한다 navMeshAgent.isStopped = false; }} 스크립트를 정말 똑같이 적었는데도 이런 이유를 모르겠어요 ...
-
해결됨스프링 시큐리티
12) 예외 처리 및 요청 캐시 필터 9:27 초 질문입니다.
안녕하세요 정수원 선생님아래 질문글을 읽다가 김또깡님이 anonymous로 인증된 것은 인가가 아직 안되었으니 ExceptionTranslationFilter catch 문에 걸리는게 이해가 간다하셨지만remember me 로 인증된 요청은 왜 인증예외로 빠지게 되는가 질문한글을 보았습니다. 9:27에 말씀하실려는 의도가 remember me 토큰이 변경되어서 RememberMeAuthenticationFilter에서 rememberMeServices.autologin을 실패하여 ExceptionTranslationFilter의 catch문으로 간다는것을 말씀하신건가요?아니면 김또깡님 질문에 답변주신 Fully Authenticated 랑 관련이있는것인가요?제가 실제로 해보니 remember me 로 인증된 요청이 ExceptionTraslationFilter로 catch문으로 안가고 remember me token이 변경되었을때만 가길레 혹시 놓친게 있나해서 문의 남깁니다.
-
미해결[코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
SQflite 관련 질문
SQflite 관련하여, flutter 공식문서에는 drift 패키지를 사용하지 않는 방식으로 주로 설명이 되어있고, 구글링으로 다른 많은 자료들을 봐도, 각자 생성 방식이 굉장히 많이 다른 것 같더라고요.혹시 강의에 나오진 않았지만, 강사님이 생각하시는 가장 편한 SQlite 사용방식이 따로 있을까요?잘 따라오다가 로컬 db생성 부분에서 조금 막히네요 ㅠㅠ쉽게 이해할 수 있는 관련 링크같은게 있다면 꼭 부탁드립니다 ㅠㅠ
-
미해결프로그래밍 시작하기 : 파이썬 입문 (Inflearn Original)
강의자료 요청드립니다.
인녕하세요 수업 너무 잘 듣고있어요쭉 따라간다면 제 실력도 많이 향상될 거라 믿습니다.다름이 아니라 처음 강의수강할 때 강의자료를 전부 다운로드 받았었는데 하나도 열리지 않습니다.이유가 무엇일까여?강의자료 부탁드리겠습니당lhs3265@naver.com
-
미해결[개정판 2023-11-27] Spring Boot 3.x 를 이용한 RESTful Web Services 개발
WebSecurityConfigurerAdapter deprecated 질문
수업 내용에서 WebSecurityConfigurerAdapter deprecated됨에 따라 securityConfig를 어떻게 구성해야하는지 알려주세요!
-
해결됨실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발
문제가 발생 할 수 있는 이유가 이해가 되지 않습니다.
private void validateDuplicateMember(Member member) { List<Member> findMembers = memberRepository.findByName(member.getName()); if (!findMembers.isEmpty()){ throw new IllegalStateException("이미 존재하는 회원 입니다."); } }에서 memberA가 동시에 DB에 insert 될때 validateduplicate를 통과하면 동시에 memberA가 로직을 호출하게 되면 memberA라는이름으로 두명이 가입 됩니다. 그래서 memberA에 제약을 건다구 하셨는데제약을 거는거 어떤건지 잘 모르겠습니다. 1. 강의 내용과 관련된 질문인가요? (예/아니오)2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오)3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오)[질문 내용]여기에 질문 내용을 남겨주세요.
-
미해결[백문이불여일타] 데이터 분석을 위한 중급 SQL
자막 관련
최근까지 자막이 보였던 것 같은데 갑자기 모든 영상에서 사라졌네요ㅠㅠ자막 지원 다시 안되나요?
-
미해결탄탄한 백엔드 NestJS, 기초부터 심화까지
안녕하세요. 배포관련 질문이 있습니다.
안녕하세요~ 강의 잘듣고 있습니다. 배포에서 질문이 있어 남깁니다.현재 배포방식은 dist, packagejson, packagelockjson 이렇게 3개를 새로 만든 github repo에 올리는 방식인데요.여기서 질문입니다.나중에 새로운 라이브러리를 설치하거나 그러면 다시 빌드해서 업데이트 시켜주는 것은 기본으로 하고, packagejson, packagelockjson도 복사해서 붙여넣기 하는 것이 맞나요?그 다음 light sail에서 pull 해준다음 npm install 다시 해주는 것이 맞는 flow인지 궁금해서 질문 남깁니다. 감사합니다.
-
미해결[입문자를 위한 UE5] Part1. 언리얼 엔진 블루프린트
변수는 protected로 설정을 못하나요?
- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요. 변수를 보면 private 밖에 안보여서 질문드립니다!
-
미해결따라하며 배우는 HTML, CSS
인라인 요소 질문
인라인 요소 공부하던 중에 질문이 있습니다...!11줄처럼 인라인요소를 작성한 것과 16~20줄처럼 인라인요소를 작성한 결과에서 출력이 차이가 납니다.1) 인라인요소는 너비 공간이 부족하면 줄바꿈이 되는 특징이 있는데 11줄과 같이 한줄에 인라인요소 작성시 줄바꿈이 되지 않고 스크롤이 생기는 이유는 뭔가요?2) 11줄의 세번째 a태그와 16~20줄의 3번째 a태그 부분이 출력된 화면을 보면 미세하지만 스페이스 하나 정도의 차이가 나는 것 같은데 html에서 enter는 스페이스로 출력되는건가요?
-
미해결Vue.js 중급 강좌 - 웹앱 제작으로 배워보는 Vue.js, ES6, Vuex
삭제버튼 클릭시 정상적으로 삭제되지만 트렌지션 효과로 보이는 값은 맨 마지막값으로 보입니다.
이렇게 Todo가 있다고 하고, 2번을 삭제하면 정상적으로 삭제됩니다.하지만 아래 삭제되는 트렌지션 효과를 보면 맨 마지막 숫자인 7이 사라지는 것처럼 보이게 되는데 혹시 이것을 현재 지운 값으로 보이게 하려면 어떻게 해야할까요..?항상 좋은 강의 감사합니다!
-
미해결스프링부트 시큐리티 & JWT 강의
세션에 저장된 로그인 된 정보 가져올 시 코드 질문입니다.
@GetMapping("/loginForm") public String loginForm(HttpSession session, @AuthenticationPrincipal PrincipalDetails userDetails) { //로그인 되어있을 때, 로그인 폼으로 이동하는 경우 메인 페이지로 이동 if(userDetails != null) { System.out.println("현재 사용자: " + userDetails.getUser()); return "redirect:/"; } return "loginForm"; }위와 같이 사용자 정보를 가져오는 것이 맞을까요? User가 잘 출력되긴하나 정확하게 짚고 넘어가고 싶어서 질문 드립니다. 아 그리고 로그인 성공을 했을 시 세션에 로그인 정보가 저장될텐데 개발자 도구로 봤을 시 위와 같이 세션에 아무 정보도 없던데 원래 보이지 않는 것 인가요? 세션에 로그인 한 정보가 저장되는데 "내 정보 보기" 같은 기능처럼 로그인 사용자의 User엔티티가 필요할 때마다 세션에 있는 해당 로그인 정보로 DB를 조회하여 원하는 엔티티를 꺼내와서 사용하는 것이 맞을까요? 제가 이렇게 생각한 이유는 세션의 로그인 정보는 로그아웃 후 다시 로그인을 하기 전까진 변하지 않기 때문에 세션의 User와 DB의 User가 일치하지 않을 수도 있기 때문입니다. 미리 감사드립니다 ㅠㅠ
-
해결됨14일만에 배우는 ASP.NET CORE
14일만에 배우는 ASP.NET CORE 질문
첫 강의 visual studio 2017 프로젝트 설치 강의가 있는데요.저는 visual studio 2022 기반이라 내용과 너무틀려 따라하기기 애매한데요.해결책이 있을까요?
-
해결됨스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술
스프링 통합 테스트에서 에러가 발생합니다
https://www.inflearn.com/questions/734751/java-lang-illegalstateexception-failed-to-load-applicationcontext-%EC%98%A4%EB%A5%98-%EC%A7%88%EB%AC%B8%EB%93%9C%EB%A6%BD%EB%8B%88%EB%8B%A4위 링크에서 공식 서포터즈 David님이 properties에 spring.datasource.username:과 spring.datasource.password:를 추가하라고 조언해주셨는데 새로운 에러가 발생하였습니다...구글링한 결과 java.lang.NumberFormatException: For input string: "spring"는 잘못된 형변환으로 자료형 불일치일 경우 발생하는 에러라는데 강사님 코드와 제 코드를 비교해봐도 어디가 잘못된건지 잘 모르겠습니다현재 회원가입 테스트와 중복 회원 예외 테스트 둘다 같은 에러가 뜨는 것으로 보이는데 아래에 제가 작성한 코드와 에러를 첨부하였습니다https://drive.google.com/file/d/1PWlxQRc22JKmjN8X8jfaJp7zdP3Fssfh/view?usp=sharing 2023-01-09 12:06:54.744 INFO 5900 --- [ Test worker] o.s.t.c.transaction.TransactionContext : Began transaction (1) for test context [DefaultTestContext@5a12c728 testClass = MemberServiceIntegrationTest, testInstance = hello.hellospring.service.MemberServiceIntegrationTest@18ff1520, testMethod = 중복_회원_예외@MemberServiceIntegrationTest, testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@79ab3a71 testClass = MemberServiceIntegrationTest, locations = '{}', classes = '{class hello.hellospring.HelloSpringApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory$DisableMetricExportContextCustomizer@2fea7088, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@13e3c1c7, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@5b40ceb, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@36546a22, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@636e8cc, org.springframework.boot.test.context.SpringBootTestArgs@1, org.springframework.boot.test.context.SpringBootTestWebEnvironment@bb9e6dc], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true, 'org.springframework.test.context.event.ApplicationEventsTestExecutionListener.recordApplicationEvents' -> false]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@34f48d1]; rollback [true]2023-01-09 12:06:54.952 INFO 5900 --- [ Test worker] o.s.t.c.transaction.TransactionContext : Rolled back transaction for test: [DefaultTestContext@5a12c728 testClass = MemberServiceIntegrationTest, testInstance = hello.hellospring.service.MemberServiceIntegrationTest@18ff1520, testMethod = 중복_회원_예외@MemberServiceIntegrationTest, testException = org.springframework.dao.DataIntegrityViolationException: PreparedStatementCallback; SQL [select * from member where id = ?]; Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-214]; nested exception is org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-200] at org.h2.message.DbException.getJdbcSQLException(DbException.java:457) at org.h2.message.DbException.getJdbcSQLException(DbException.java:429) at org.h2.message.DbException.get(DbException.java:194) at org.h2.value.Value.convertTo(Value.java:875) at org.h2.value.Value.convertTo(Value.java:737) at org.h2.mvstore.db.MVPrimaryIndex.getKey(MVPrimaryIndex.java:395) at org.h2.mvstore.db.MVDelegateIndex.find(MVDelegateIndex.java:87) at org.h2.index.BaseIndex.find(BaseIndex.java:148) at org.h2.index.IndexCursor.find(IndexCursor.java:163) at org.h2.table.TableFilter.next(TableFilter.java:498) at org.h2.command.dml.Select$LazyResultQueryFlat.fetchNextRow(Select.java:1843) at org.h2.result.LazyResult.hasNext(LazyResult.java:101) at org.h2.result.LazyResult.next(LazyResult.java:60) at org.h2.command.dml.Select.queryFlat(Select.java:737) at org.h2.command.dml.Select.queryWithoutCache(Select.java:844) at org.h2.command.dml.Query.queryWithoutCacheLazyCheck(Query.java:201) at org.h2.command.dml.Query.query(Query.java:489) at org.h2.command.dml.Query.query(Query.java:451) at org.h2.command.CommandContainer.query(CommandContainer.java:285) at org.h2.command.Command.executeQuery(Command.java:195) at org.h2.server.TcpServerThread.process(TcpServerThread.java:343) at org.h2.server.TcpServerThread.run(TcpServerThread.java:183) at java.base/java.lang.Thread.run(Thread.java:834)Caused by: java.lang.NumberFormatException: For input string: "spring" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.base/java.lang.Long.parseLong(Long.java:692) at java.base/java.lang.Long.parseLong(Long.java:817) at org.h2.value.Value.convertToLong(Value.java:1011) at org.h2.value.Value.convertTo(Value.java:808) ... 19 more, mergedContextConfiguration = [WebMergedContextConfiguration@79ab3a71 testClass = MemberServiceIntegrationTest, locations = '{}', classes = '{class hello.hellospring.HelloSpringApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.autoconfigure.actuate.metrics.MetricsExportContextCustomizerFactory$DisableMetricExportContextCustomizer@2fea7088, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@13e3c1c7, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@5b40ceb, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@36546a22, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@636e8cc, org.springframework.boot.test.context.SpringBootTestArgs@1, org.springframework.boot.test.context.SpringBootTestWebEnvironment@bb9e6dc], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true, 'org.springframework.test.context.event.ApplicationEventsTestExecutionListener.recordApplicationEvents' -> false]]PreparedStatementCallback; SQL [select * from member where id = ?]; Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-214]; nested exception is org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-200] at org.h2.message.DbException.getJdbcSQLException(DbException.java:457) at org.h2.message.DbException.getJdbcSQLException(DbException.java:429) at org.h2.message.DbException.get(DbException.java:194) at org.h2.value.Value.convertTo(Value.java:875) at org.h2.value.Value.convertTo(Value.java:737) at org.h2.mvstore.db.MVPrimaryIndex.getKey(MVPrimaryIndex.java:395) at org.h2.mvstore.db.MVDelegateIndex.find(MVDelegateIndex.java:87) at org.h2.index.BaseIndex.find(BaseIndex.java:148) at org.h2.index.IndexCursor.find(IndexCursor.java:163) at org.h2.table.TableFilter.next(TableFilter.java:498) at org.h2.command.dml.Select$LazyResultQueryFlat.fetchNextRow(Select.java:1843) at org.h2.result.LazyResult.hasNext(LazyResult.java:101) at org.h2.result.LazyResult.next(LazyResult.java:60) at org.h2.command.dml.Select.queryFlat(Select.java:737) at org.h2.command.dml.Select.queryWithoutCache(Select.java:844) at org.h2.command.dml.Query.queryWithoutCacheLazyCheck(Query.java:201) at org.h2.command.dml.Query.query(Query.java:489) at org.h2.command.dml.Query.query(Query.java:451) at org.h2.command.CommandContainer.query(CommandContainer.java:285) at org.h2.command.Command.executeQuery(Command.java:195) at org.h2.server.TcpServerThread.process(TcpServerThread.java:343) at org.h2.server.TcpServerThread.run(TcpServerThread.java:183) at java.base/java.lang.Thread.run(Thread.java:834)Caused by: java.lang.NumberFormatException: For input string: "spring" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.base/java.lang.Long.parseLong(Long.java:692) at java.base/java.lang.Long.parseLong(Long.java:817) at org.h2.value.Value.convertToLong(Value.java:1011) at org.h2.value.Value.convertTo(Value.java:808) ... 19 moreorg.springframework.dao.DataIntegrityViolationException: PreparedStatementCallback; SQL [select * from member where id = ?]; Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-214]; nested exception is org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-200] at org.h2.message.DbException.getJdbcSQLException(DbException.java:457) at org.h2.message.DbException.getJdbcSQLException(DbException.java:429) at org.h2.message.DbException.get(DbException.java:194) at org.h2.value.Value.convertTo(Value.java:875) at org.h2.value.Value.convertTo(Value.java:737) at org.h2.mvstore.db.MVPrimaryIndex.getKey(MVPrimaryIndex.java:395) at org.h2.mvstore.db.MVDelegateIndex.find(MVDelegateIndex.java:87) at org.h2.index.BaseIndex.find(BaseIndex.java:148) at org.h2.index.IndexCursor.find(IndexCursor.java:163) at org.h2.table.TableFilter.next(TableFilter.java:498) at org.h2.command.dml.Select$LazyResultQueryFlat.fetchNextRow(Select.java:1843) at org.h2.result.LazyResult.hasNext(LazyResult.java:101) at org.h2.result.LazyResult.next(LazyResult.java:60) at org.h2.command.dml.Select.queryFlat(Select.java:737) at org.h2.command.dml.Select.queryWithoutCache(Select.java:844) at org.h2.command.dml.Query.queryWithoutCacheLazyCheck(Query.java:201) at org.h2.command.dml.Query.query(Query.java:489) at org.h2.command.dml.Query.query(Query.java:451) at org.h2.command.CommandContainer.query(CommandContainer.java:285) at org.h2.command.Command.executeQuery(Command.java:195) at org.h2.server.TcpServerThread.process(TcpServerThread.java:343) at org.h2.server.TcpServerThread.run(TcpServerThread.java:183) at java.base/java.lang.Thread.run(Thread.java:834)Caused by: java.lang.NumberFormatException: For input string: "spring" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.base/java.lang.Long.parseLong(Long.java:692) at java.base/java.lang.Long.parseLong(Long.java:817) at org.h2.value.Value.convertToLong(Value.java:1011) at org.h2.value.Value.convertTo(Value.java:808) ... 19 more at app//org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:251) at app//org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) at app//org.springframework.jdbc.core.JdbcTemplate.translateException(JdbcTemplate.java:1541) at app//org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:667) at app//org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:713) at app//org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:744) at app//org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:757) at app//org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:815) at app//hello.hellospring.repository.JdbcTemplateMemberRepository.findByName(JdbcTemplateMemberRepository.java:52) at app//hello.hellospring.service.MemberService.validateDuplicateMember(MemberService.java:31) at app//hello.hellospring.service.MemberService.join(MemberService.java:25) at app//hello.hellospring.service.MemberServiceIntegrationTest.중복_회원_예외(MemberServiceIntegrationTest.java:47) at java.base@11/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base@11/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base@11/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base@11/java.lang.reflect.Method.invoke(Method.java:566) at app//org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:725) at app//org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60) at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131) at app//org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149) at app//org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140) at app//org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84) at app//org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115) at app//org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105) at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106) at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64) at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45) at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37) at app//org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104) at app//org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98) at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:214) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:210) at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:135) at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:66) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at java.base@11/java.util.ArrayList.forEach(ArrayList.java:1540) at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at java.base@11/java.util.ArrayList.forEach(ArrayList.java:1540) at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) at app//org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) at app//org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) at org.junit.platform.launcher.core.SessionPerRequestLauncher.execute(SessionPerRequestLauncher.java:53) at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:99) at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:79) at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:75) at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:62) at java.base@11/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base@11/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base@11/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base@11/java.lang.reflect.Method.invoke(Method.java:566) at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:94) at com.sun.proxy.$Proxy2.stop(Unknown Source) at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:193) at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:129) at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:100) at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:60) at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:113) at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:65) at app//worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) at app//worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74)Caused by: org.h2.jdbc.JdbcSQLDataException: Data conversion error converting "spring"; SQL statement:select * from member where id = ? [22018-200] at org.h2.message.DbException.getJdbcSQLException(DbException.java:457) at org.h2.message.DbException.getJdbcSQLException(DbException.java:429) at org.h2.message.DbException.get(DbException.java:194) at org.h2.value.Value.convertTo(Value.java:875) at org.h2.value.Value.convertTo(Value.java:737) at org.h2.mvstore.db.MVPrimaryIndex.getKey(MVPrimaryIndex.java:395) at org.h2.mvstore.db.MVDelegateIndex.find(MVDelegateIndex.java:87) at org.h2.index.BaseIndex.find(BaseIndex.java:148) at org.h2.index.IndexCursor.find(IndexCursor.java:163) at org.h2.table.TableFilter.next(TableFilter.java:498) at org.h2.command.dml.Select$LazyResultQueryFlat.fetchNextRow(Select.java:1843) at org.h2.result.LazyResult.hasNext(LazyResult.java:101) at org.h2.result.LazyResult.next(LazyResult.java:60) at org.h2.command.dml.Select.queryFlat(Select.java:737) at org.h2.command.dml.Select.queryWithoutCache(Select.java:844) at org.h2.command.dml.Query.queryWithoutCacheLazyCheck(Query.java:201) at org.h2.command.dml.Query.query(Query.java:489) at org.h2.command.dml.Query.query(Query.java:451) at org.h2.command.CommandContainer.query(CommandContainer.java:285) at org.h2.command.Command.executeQuery(Command.java:195) at org.h2.server.TcpServerThread.process(TcpServerThread.java:343) at org.h2.server.TcpServerThread.run(TcpServerThread.java:183) at java.base/java.lang.Thread.run(Thread.java:834)Caused by: java.lang.NumberFormatException: For input string: "spring" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.base/java.lang.Long.parseLong(Long.java:692) at java.base/java.lang.Long.parseLong(Long.java:817) at org.h2.value.Value.convertToLong(Value.java:1011) at org.h2.value.Value.convertTo(Value.java:808) ... 19 more at app//org.h2.message.DbException.getJdbcSQLException(DbException.java:506) at app//org.h2.engine.SessionRemote.readException(SessionRemote.java:637) at app//org.h2.engine.SessionRemote.done(SessionRemote.java:606) at app//org.h2.command.CommandRemote.executeQuery(CommandRemote.java:171) at app//org.h2.jdbc.JdbcPreparedStatement.executeQuery(JdbcPreparedStatement.java:128) at app//com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52) at app//com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java) at app//org.springframework.jdbc.core.JdbcTemplate$1.doInPreparedStatement(JdbcTemplate.java:722) at app//org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:651) ... 93 more