Home
Lemon
Cancel

MyBatis报错,无效的列索引

报错信息 nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property= ‘groupid’, mode=IN, javaType=class java.lang.Object, jdbcType=null, ...

金融监管、监管科技以及银行业监管报送概述

上周金融科技前沿课程的主题是《监管科技》,韩海燕老师从金融监管引入,介绍了我国的金融监管体系,接着进入监管科技的详细讲解。我觉得最主要的是弄清楚监管科技的定义,以及在实际的银行业应用场景中具体的运作流程是怎么样的。韩老师讲的很全面,将ABCD等金融科技手段在监管系统中是如何运作的讲的很清楚,收获颇丰,但是比较少涉及到监管的对象和内容,仍没有很清楚监管机构是要监管什么东西?监管机构要求银行金融...

MySQL安全模式

MySQL安全模式要求不能对非主键的条件查询做update和delete操作 报错信息 update activity set type = 1 where title = 'aa' Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that...

解决无法复制代码的问题

$("#content_views pre").css("user-select", "text"); $("#content_views pre code").css("user-select", "text");

正计时

如何给Tomcat指定JDK和JRE

在Tomcat安装目录下的bin目录下找到setclasspath.sh,在最开始添加以下代码 export JAVA_HOME="/home/jdk-1.8" export JRE_HOME="/home/jdk-1.8/jre"

Spring Boot配置Redis哨兵模式连接

spring: redis: database: 0 # host: 127.0.0.1 # 哨兵模式无效youxiao port: 6379 password: root # 哨兵模式有效 # 连接超时时长(毫秒) pingInterval: 100000 timeout...

Redis哨兵模式执行select 0命令报错: (error) ERR unknown command select, with args beginning with:0

报错信息 Redis哨兵模式执行select 0命令报错。 (error) ERR unknown command select, with args beginning with: 0 解决办法 三个node节点为:10.12.168.68:6395,10.12.168.69:6395,10.12.168.70:6396 redis-cli -h 10.12.168.68 -p 639...

Maven连接私服如何配置

Maven的setting.xml文件配置,该配置中使用了一个id为nexusProfile的profile,这个profile包含了相关的仓库配置,同时配置中又使用了activeProfile元素将这个profile激活,这样当执行Maven构件的时候,激活的profile会将仓库配置应用到项目中去。 <profiles> <profile> ...

JQuery格式化时间

$(function(){ alert(getDateString(new Date("2022-04-19"))); }); function getDateString(time) { var datetime = new Date(); datetime.setTime(time); var year = datetime.getFullYear();...