ibatis安插返回自增值

ibatis插入返回自增值

<insert id="insert" parameterClass="Person">
    insert into person(name,pswd) values(#{name},#{pswd})

    <selectKey resultClass="java.lang.Integer" keyProperty="id" >

      SELECT  @@IDENTITY

    </selectKey>

</insert>