728x90

rg.apache.ibatis.exceptions.PersistenceException:
### Error updating database.  Cause: java.lang.IllegalArgumentException: queryRowCount2 is ambiguous in Mapped Statements collection (try using the full name including the namespace, or rename one of the entries)
### Cause: java.lang.IllegalArgumentException: deleteCategory is ambiguous in Mapped Statements collection (try using the full name including the namespace, or rename one of the entries)

 

※ id로 지정해준 이름

int total_count = session.selectOne("queryRowCount2");

 

다른 맵퍼에서 같은 id를 사용해서 나는 에러

UserMap.xml  BoardMap.xml을 사용중인데

UserMap.xml  queryRowCount2  id를 갖고 있는 것이 있어서 나는 에러다. 

맵퍼의 namespace를 적어 주던지, 아니면 id를 중복되지 않도록 바꿔주면 된다

728x90

+ Recent posts