ibatis throwing NullPointerException
- by Prashant P
i am trying to test ibatis with DB. I get NullPointerException. Below are the class and ibatis bean config,
<select id="getByWorkplaceId"
parameterClass="java.lang.Integer" resultMap="result">
select * from WorkDetails where workplaceCode=#workplaceCode#
</select>
<select id="getWorkplace"…