728x90
반응형

org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database. Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'token' in 'class java.lang.String'
### Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'token' in 'class java.lang.String'
at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23)
at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:107)


리턴타입은 row 하나하나를 보고 적어야 합니다.

결과 값이 1건일 지 100건일지 모르기 때문에

Dao에서 List으로 받을 건지 Map으로 받을건지 결정하는 것이고요.

selectList 또는 selectOne

단, Dao에서 selectOne으로 해 놓고선 결과값이 2건 이상 나올 경우

Mybatis에서 에러를 낸다라는거~

728x90
반응형

'Web Programming > database' 카테고리의 다른 글

ORA-ROWSCN  (0) 2018.09.13
오라클 GRANT SYNONYM 권한주기  (0) 2018.09.06
mybatis if else choose  (0) 2018.08.30
ACID란?  (0) 2018.08.29
queryForObject 와 queryForList  (0) 2014.04.15

+ Recent posts