Exception in thread "main" org.springframework.jdbc.UncategorizedSQLException: Error setting null for parameter #6 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. C…
普通的jdbc事务在插入数据后 下面的代码报错时 数据不会回滚 但是 spring的事务会回滚…
插入语句xml代码: <insert id="insertUser" parameterType="com.spring.mybatis.po.User"> <!--selectKey获取插入的id值 keyProperty="id":将查询到主键设置到对象中的某个属性上 order="AFTER":执行查询主键ID值的顺AFTER:执行之后获取 resultType:获取返回结果类型(包装类) SELECT…
背景:目前有个插入语句需要获取插入记录的id  因为id是自增长的,所以要在插入后返回这个id 错误1: mapper.xml: <!-- 新增 返回自增长id--> <insert id="save" parameterType="pd" resultType="int"> insert into sys_push( username,title,content,publisher,pushtime ) values (…
1.可参考连接:https://www.cnblogs.com/thomas12112406/p/6217211.html 2.dao层的配置 void addUser(@Param("uname") String uname, @Param("phone") String phone, @Param("address") String address, @Param("header") String header, @Par…
直接很长的字符串插入到clob字段中会报字符过长的异常,相信大家都会碰到这种情况 String sql = "insert into table(request_id,table_name,total_number,search_result,create_time,flag) values (?,?,?,?,to_date(?,'yyyy-MM-dd HH24:mi:ss'),?)";            Connection dbcon = DB.getInstance().ge…
根据条件查询数据列表,mybatis查询代码如下 如果只查询属于特定部门拥有的数据权限.这需要用 String[ ] codes保存当前部门及其子部门的部门编码. 所以需要在mybatis中遍历编码数组. 失败1 <select id="findList" resultType="xx.entity.Xxxx"> SELECT ${sqlMap.column.toSql()} FROM ${sqlMap.table.toSql()} <where&…
在IOS7中设置applicationIconBadgeNumber不会有什么问题,但是直接在IOS8中设置applicationIconBadgeNumber会报错.因为在IOS8中要想设置applicationIconBadgeNumber,需要用户的授权,在IOS8中,需要加上下面的代码: UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificatio…
背景 自己想做个网站,没那么多精力,然后就看到了discuz.万网买了一个月的ecs Windows server 2008 r2 服务器,就开始着手安装环境.论坛! 建站 第一次使用discuz论坛.没有学过相关语言(.net人员)!使用打包安装工具全部安装了论坛.mysql.php.使用配置感觉还不错. 但是到邮箱这里就卡主了,邮箱对Discuz论坛而言可以说是验证身份的唯一重要渠道(据我了解没有短信验证). 问题 一直报错,phplog日志只是说连接不到,然而也找不出问题所在. 2天搜了论…
abp在后端抛出异常 throw new UserFriendlyException($"抛出一个错误"); 在发布之前,需要设置是否把报错发送给前端 如果将此设置为true,则会在出错时将所有异常和详细信息直接发送给客户端. 默认值:false(ABP隐藏来自客户端的异常详细信息,但特殊异常除外.) public override void PreInitialize() { Configuration.Modules.AbpWebCommon().SendAllExceptions…