总结

<select id="findByName" parameterType="String" resultType="com.risen.lifei.entity.Student">

select stuid,stuname,age,sex,password from student where stuname=#{stuname,jdbcType=VARCHAR}

</select>

mybatis如何将页面上的字段string类型的和数据库中varchar类型的作比较

data类型转string有投string方法,string转data:

DateFormat fmt =new SimpleDateFormat("yyyy-MM-dd");            
            String s = "1987-10-10";
            Date date = fmt.parse(s);
            System.out.println(fmt.format(date));


你可能感兴趣的:(知识)