Spring +SpringMVC+MyBatis 

 

启动项目到 Initializing Spring root WebApplicationContext  不执行了

 

我的问题原因是

 <select id="getUser" parameterType="String" resultType="result">
      SELECT id,username,userpwd FROM t_admin_user
      where username=#{userName}
  </select>

 

返回类型错了 我返回的是一个map 改为resultMap="result"

 

蛋疼的错误  就因为这个映射的问题一直卡住了