[오류] There is no getter for property named
2022. 7. 25. 14:28
개발/오류
There is no getter for property named There was an unexpected error (type=Internal Server Error, status=500). nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'value' in 'class com.-.-.fruit.dto.fruitResult' org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter..
[오류] indexoutofboundsexception, java.lang.NumberFormatException: For input string "string"
2022. 7. 6. 14:09
개발/오류
java.lang.NumberFormatException: For input string "객체이름" 오류 내용 There was an unexpected error (type=Internal Server Error, status=500). For input string: "fruitType" java.lang.NumberFormatException: For input string: "fruitType" selected>${fruitType.name} parameterType을 Map으로 객체를 가져온 뒤, 그걸 Controller에서 model에 속성 추가하여 넣고 화면에 뿌리는 작업이었는데 해당 오류가 뜸. 해당 오류의 근원지는 JSP의 저 부분이었는데, model 속성 fruit에 든 fruitTy..
[오류] Connection NetworkTimeOut error
2022. 7. 1. 11:38
개발/오류
Connection.setNetworkTimeout 오류 내용 20220701 11:01:28.497 [http-nio-9090-exec-1] WARN c.z.h.p.PoolBase - HikariPool-1 - Failed to validate connection net.sf.log4jdbc.sql.jdbcapi.ConnectionSpy@6c962165 ((conn=127707) Connection.setNetworkTimeout cannot be called on a closed connection). Possibly consider using a shorter maxLifetime value. 20220701 11:01:28.509 [HikariPool-1 connection closer] ERRO..
[front] 오류 모음
2022. 6. 23. 08:53
개발/오류
colgroup 사이즈 지정이 안 되는 오류 toast UI로 생성하는 테이블의 data가 안 불리는 오류 발생. 자세히 보니 colgroup에 col이 생기지 않았다가, 사이즈를 직접 지정해야 생기는 이상한 오류인데. 부모 div의 position: absolute를 없애니 크기 지정이 정상적으로 들어가면서 col이 생성됨.
[Error/Spring] out of range value for column
2022. 6. 14. 10:34
개발/오류
out of range value for column : insert하려는 해당 data의 column과 datatype이 안 맞거나 datatype을 overflow할 경우 발생 그러나 내 경우는 타입이 맞아서 resulttype이 문제가 되는 거였는데, Class type으로 지정했을 때 해당 오류가 생겼고 String으로 바꾸니 해당 오류는 안 떴지만 Class로 받아야 했음. 상사가 짚어 준 부분은 VO에서 @NoArgsConstructor annotation을 사용하여 parameter가 없는 기본 생성자를 생성하자 해결되었음. 왜인지는 모르겠음 더 공부하겠음 ^^,,
[오류] 진행 시 발생하는 에러 원인 및 해결
2022. 2. 8. 10:06
개발/오류
1. 사용자 접근 시 ora-01045: user [유저명] lacks create session privilege user 생성 후 session 권한이 주어지지 않아 생기는 오류. GRANT CREATE SESSION TO [유저명]; 2. FK 설정 시 ALTER TABLE post_tb ADD CONSTRAINT member_tb_post_tb_FK FOREIGN KEY(user_nm) REFERENCES post_tb(user_nm) 오류 보고 - ORA-02270: no matching unique or primary key for this column-list 02270. 00000 - "no matching unique or primary key for this column-list" *C..