these are the errors i am getting.. i can't seem to figure out why. i've rewritten the code more than a couple of times and went through the lessons. can someone please take a look? I am working on a basic spring project.
-Error creating bean with name 'securityConfig'
-Error creating bean with name 'usersMapper'
-Mapped Statements collection already contains value for com.udacity.jwdnd.course1.cloudstorage.mapper.UsersMapper.getUser
varun
In the interface UsersMapper, you have two methods getUser(). Even if the signature are different, it seems to be not supported.
I suggest to rename the getUser(int id) by getUserById(int id) to solve the issue.
2.1m questions
2.1m answers
60 comments
57.0k users