
项目错误
JISOOLUO
这个作者很懒,什么都没留下…
展开
-
A typical case is HTML attributes for event handlers (e.g. "onload"), in which textual data from va
thymeleaf th:onclike 传入多个字符串原代码th:οnclick="'javascript:searchHot(\''+${hot.name}+'\')'"此问题并不是错误,而是springboot版本的原因,新版本(2.xxx版本)中用用着办法是会报错的,老版本(我试的是1.3版本)用这个方法可行的。解决办法th:onclick="searchHot([[$...原创 2020-03-12 23:48:29 · 611 阅读 · 0 评论 -
Cannot have more than one plugin implementing a REST wrapper
安装readonlyrest启动es时报错at org.elasticsearch.cli.Command.main(Command. ~[elasticsearch-cli-6.4.1.jar:6.4.1] at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch. ~[elasticsearch-6.4.1.j...原创 2020-03-08 19:53:55 · 2038 阅读 · 1 评论 -
com.alibaba.fastjson.JSONException: syntax error, expect {, actual [, pos 0,问题记录
版本:fastjson-version 1.2.62在转换为对象集合时不能用强转的方法,例如:List<User> UserList = (List<User>)JSON.parseObject(keyJSON, User.class);这样就会出现标题所示的错误解决办法List<User> UserList = JSON.parseObje...原创 2020-03-06 22:16:32 · 2280 阅读 · 0 评论 -
springboot连docker的mysql报错 Access denied for user 'root'@'192.168.56.1' (using password: NO)
1、问题:报错IP 不是我数据库容器的ip,是VirtualBox配置的IPjava.sql.SQLException: Access denied for user ‘root’@‘192.168.56.1’ (using password: NO)springBoot里面的原配置spring.datasource.data-password=123456spring.dataso...原创 2020-02-20 00:55:59 · 1754 阅读 · 1 评论