SpringMvc+Mybatis框架 从控制器调用方法没抛异常返回true,update的语句能放到数据库 执行
但在映射文件中没生效?<updateid="performanceUpdateInfo"parameterType="pm">updateorg_performances...
但在映射文件中没生效?
<update id="performanceUpdateInfo" parameterType="pm">
update org_performance set performance_rank = #{performRank},performance_content = #{performContent}
where performance_id = #{performId}
</update>
业务逻辑层代码:
public boolean performanceUpdateInfo(Performance pm) {
try {
pd.performanceUpdateInfo(pm);
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
控制台输出:
true
前台数据没生效 展开
<update id="performanceUpdateInfo" parameterType="pm">
update org_performance set performance_rank = #{performRank},performance_content = #{performContent}
where performance_id = #{performId}
</update>
业务逻辑层代码:
public boolean performanceUpdateInfo(Performance pm) {
try {
pd.performanceUpdateInfo(pm);
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
控制台输出:
true
前台数据没生效 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询