51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ATI
tomcat报错this web application instance has been stopped already问题
上网搜了下,大部分的报错原因:重启时候之前的tomcat未正常关闭,导致在重启时候报了这个问题。mac下解决:ps-ef|greptomcat 找到在进行的tomcat,kill-9 进程号,关闭即可。 然而自己的原因是:编译的target目录有两个同样...
代码星球
·
2020-04-05
tomcat
报错
this
web
application
记录一次mybatis查询返回为空数据库却能查询到数据的经历
昨晚上测试人员给发了一条测试数据,说是根据这条数据接口返回信息为空。之后根据给的信息去数据库查询了下,明明是有数据的。但是用mybatis就是查询不出来。奇了怪了,自己测试的数据都能查询出来,为何这条数据就是没有那?查询条件就是主键+状态值而已,没有多余的查询。 想了半天,...
代码星球
·
2020-04-05
查询
记录
一次
mybatis
返回
spring单元测试报错:Failed to load ApplicationContext 的解决方法
使用idea配置单元测试之后,配置完spring的注解@junit和@runer之后一直报错。最后发现是默认使用jdk1.8引起的,使用jdk1.7即可。...
代码星球
·
2020-04-05
spring
单元
测试
报错
Failed
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): cn.gaiay.business.helper.dao.LiveRegenrationRecordMapper.insert
原因分析: 字段名称、报名、类名对应不上,比如colomn和property属性反了。。按以下步骤一一执行:1:检查xml文件所在的package名称是否和interface对应的package名称一一对应2:检查xml文件的namespace是否和xml文件的package名称一一对...
代码星球
·
2020-04-05
org.apache.ibatis.binding.BindingException
Invalid
bound
statement
not
在IDEA中使用MyBatis Generator逆向工程生成代码
1.配置Mavenpom.xml文件 添加plugin配置文件 <plugin><groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-maven-plugin<...
代码星球
·
2020-04-05
IDEA
使用
MyBatis
Generator
逆向工程
mybatis报错invalid types () or values ()解决方法
报错信息:org.mybatis.spring.MyBatisSystemException:nestedexceptionisorg.apache.ibatis.reflection.ReflectionException:Errorinstantiatingclasscom.huawei.PIM.DA.common...
代码星球
·
2020-04-05
mybatis
报错
invalid
types
or
mybatis报错:org.apache.ibatis.builder.IncompleteElementException: Could not find parameter map
异常信息:org.apache.ibatis.builder.IncompleteElementException:Couldnotfindparametermapcom.boco.fsmsys.amuse.dao.AmuseItemDao.amuseItematorg.apache.ibatis.builder.Ma...
代码星球
·
2020-04-05
mybatis
报错
org.apache.ibatis.builder.IncompleteElementException
Could
not
Intelij IDEA 配置Tomcat时找不到 “Application Server”
由于公司突然断电,再打开idea的时候,tomcat就消失了。然后在网上搜了一下,没搜到自己乱点了一下。如图:plugins>> applicationserversView 是报红色。所以我在搜索栏搜索了tomcat:如果箭头所指地方是勾上的话,applicationserver&nb...
代码星球
·
2020-04-05
Intelij
IDEA
配置
Tomcat
时找
No enum constant org.apache.ibatis.type.JdbcType.Integer
同事今天在用mybatis查询时候,报了上面这个问题。上网查了下,原来是mybatis封装类型的问题。原因是在resultMap中jdbcType写为了Integer,但是在MyBatis中没有这个数据类型 来查看了原码,发现MyBatis的jdbcType是一...
代码星球
·
2020-04-05
No
enum
constant
org.apache.ibatis.type.JdbcType.Integer
关于cn.jedisoft.framework.annotations 的增删改查
今天在做一个crud的功能的时候,调用api老是调用不同。奇怪的是在add的时候能添加进去,而删除和修改的时候不能成功。 最后反应过来,我在修改和删除的时候用的主键id是int类型的,接口类型是不能使用的。修改为String类型就好了。。...
代码星球
·
2020-04-05
关于
cn.jedisoft.framework.annotations
删改
Error:java: Compilation failed: internal java compiler error
idea启动时候报这个问题,上网搜都是说jdk版本的问题,可是看了下自己的项目没问题啊。 然而,最后还是发现,其中有一个是jdk1.6的,影响到了其他的。。。改了就解决了。 ...
代码星球
·
2020-04-05
java
Error
Compilation
failed
internal
Data truncation: Out of range value for column 'id' at row 1 ### The
org.springframework.dao.DataIntegrityViolationException:###Errorupdatingdatabase.Cause:com.mysql.jdbc.MysqlDataTruncation:Datatruncation:Outofrangevalueforcolum...
代码星球
·
2020-04-05
Data
truncation
Out
of
range
Junit 报错: Failed to load ApplicationContext
今天在使用Junit测试时候,报了个错误: FailedtoloadApplicationContext,aspectnotfound;挺奇怪的我又没有调用你,之前还好好的,现在不能使用了。。。 问了下同事,解决办法也很简单:把缺少的类在pom.xml...
代码星球
·
2020-04-05
Junit
报错
Failed
to
load
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
MySQL5.7版本开始,增强密码验证机制,网上说安装的时候会在/root/.mysql_secret 文件中生成默认密码,这一点自5.7.6版本以后也去掉了。 针对如果生成默认密码,网上有一个版本,内容如下:1、修改配置文件,一般在 /etc/my.c...
代码星球
·
2020-04-05
ERROR
1819
HY000
Your
password
Redis (error) NOAUTH Authentication required.解决方法
出现认证问题,应该是设置了认证密码,输入密码既可以啦注意密码是字符串形式![plain] viewplain copy 127.0.0.1:6379> auth "yourpassword" 例如密码是‘root&rs...
代码星球
·
2020-04-05
Redis
error
NOAUTH
Authentication
required.
首页
上一页
...
274
275
276
277
278
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他