一个问题:向comment表添加记录时,报错, 无法设置值. reflection.ReflectionException: Could not set property 'id' of 'class com.awen.entity.Comment' with value '1246084348583632898' Cause: java.lang.IllegalArgumentException: argument type mismatch 我的comment表中设计的id为char(19)…
按照官网在写mybatis-plus的自动填充功能一直报错,发现官网的解说不全,数据库是datetime类型,java程序又是date,类型不匹配 org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'updateDate' of 'class com.example.pojo.…
有时候.在JavaScript中.即使设置了ID也有可能出现document.getElementById()获取不到的情况,然后你就開始想document是否写错之类的.事实上根本就不是你的代码的大写和小写出现了问题.主要是你还没有搞清楚直接写在<script></script>之间东西与写在window.onload=function(){}里面的东西的差别究竟在哪里. 比方例如以下的很一段简单代码,在网页中除了一个ID为a,然后里面写了aaaa的图层div之外就再也没有其他东…
summary: 在32bit的fedora9上安装EMC客户端遇到无法解决的依赖问题 detail: rpm 安装: [root@hcszmons02 tmp]# rpm -ivh lgtoclnt-8.2.3.1-1.i686.rpm error: Failed dependencies: /bin/ksh is needed by lgtoclnt-8.2.3.1-1.i686 libstdc++.so.5 is needed by lgtoclnt-8.2.3.1-1.i686 libs…
转自:http://www.cnblogs.com/rhythmK/p/4047142.html 1.环境: mybatis : 3.2.3 spring-mybatis:  1.2.1 mysql:5.5.29 实体: public class sys_user { private int userid; private String username; public int getUserid() { return userid; } public void setUserid(Intege…
今天在写自动化测试脚本的时候要获取一个输入框中的文本写了如下脚本: getAndSwitch("http://cas.minshengnet.com:14080/register/eRegisterPage.shtml");  inputById("txtPhoneNum", "13599101693");  inputById("txtSMS", "1234567");  clickAndWait(By.…
文章目录 Windows Linux 经常在Windows.Linux环境下运行JavaWeb项目,Tomcat的端口被占用了. 端口被占用就查看是被谁占用关闭它就行. Windows 在Windows上运行JavaWeb项目提示Tomcat端口被占用了. Description: The Tomcat connector configured to listen on port 8010 failed to start. The port may already be in use or th…
记录 MySQL5.7 datetime 默认值设为'0000-00-00 00:00:00'值出错 我的MySQL版本 mysql --version 5.7.28 C:\Users\x1c>mysql --version mysql Ver 14.14 Distrib 5.7.28, for Win64 (x86_64) C:\Users\x1c> 我要创建的表结构 DROP TABLE IF EXISTS `dianpingdb`.`user`; CREATE TABLE `dianpi…
简单记录一下 ,我本地开发环境这样写测试时没有问题, @ApiOperation(value="取消关注") @PostMapping("cancelFollow") public R cancelFollow(@RequestBody CancelFollowVo cancelFollowVo) { } 当我部署到服务器上时测试出现了这个问题 Closing non transactional SqlSession [org.apache.ibatis.sessi…
XCODE5.0升到XCODE5.1后LLVM也从5.0升到5.1,工程报下面的错误了: clang: error: unknown argument: '-fobj-arc' [-Wunused-command-line-argument-hard-error-in-future] clang: note: this will be a hard error (cannot be downgraded to a warning) in the future Command /Applicati…