会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
肖镜泽
public static void main(String[] args) { String a = "I'M A DEVELOPER"; char[] chars = a.toCharArray(); int num = 0; for (char aChar : chars) { num+=(int)aChar; } System.out.println(num); }
博客园
首页
新随笔
联系
订阅
管理
2020年7月23日
Mybatis中insert中返回主键ID的方法——mapper.xml
摘要: myMapper.xml <insert id="insertXXX" useGeneratedKeys="true" keyProperty="MyId" parameterType="com.xx.yy.MyClass"> //普通的插入语句SQL语句 </insert> 这样就可以插入数据后,
阅读全文
posted @ 2020-07-23 15:16 肖镜泽
阅读(4885)
评论(0)
推荐(0)
编辑
公告