MyEclipse xml 手动添加 dtd
Posted 纸上得来终觉浅,绝知此事要躬行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyEclipse xml 手动添加 dtd相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.mycom.mybatis_1.test1.userMapper"> <!-- 根据id查询,得到一个user对象 --> <select id="getUser" parameterType="int" resultType="com.mycom.mybatis_1.test1.User"> select * from users where id=#{id} </select> </mapper>
以上是关于MyEclipse xml 手动添加 dtd的主要内容,如果未能解决你的问题,请参考以下文章