如何解决SpringMVC+mybatis框架错误的问题?
出现这个错误是由于在执行sql的时候无法匹配sql语句的通配符造成的,有两个解决方法
具体步骤
org.apache.ibatis.binding.BindingException: Parameter 'username' not found. Available parameters are [0, 1, param1, param2]1
出现这个错误是由于在执行sql的时候无法匹配sql语句的通配符造成的,有两个解决方法。
1.在对应dao的xml文件的sql语句要这样写
<select id="findByUsernameAndPassword" resultType="com.lzcc.model.User"> select * from user where username = #{0} and password = #{1};</select>123
2.在dao接口的方法中的参数中添加@param注解
List<User> findByUsernameAndPassword(@Param("username") String username,@Param("password") String password) throws SQLException;1
3.如果上述两点都正常有可能是springmvc把静态资源给拦截了。要在springmvc的配置文件中加入以下代码:
<mvc:resources location="/images/" mapping="/images/**"/>
<mvc:resources location="/js/" mapping="/js/**"/>
<mvc:resources location="/css" mapping="/css/**"/>