
Array老师
文章平均质量分 93
Java架构师Array
这个作者很懒,什么都没留下…
展开
-
Docker启动报错docker: Error response from daemon: Conflict. The container name “/redis6“ is already in u
docker: Error response from daemon: Conflict. The container name "/redis6" is already in use by container "b472e52c109bb5cfadf9dcd167b0e9a66f5215477a96673f0d60c7d07d7e746b". You have to remove (or rename) that container to be able to reuse that name.原创 2022-08-09 00:18:26 · 9378 阅读 · 0 评论 -
CentOS7 使用二进制部署 Kubernetes 1.15-1.17集群(均通用,已经尝试,细心)
转载地址:https://blog.youkuaiyun.com/qq_37950254/article/details/95204011 <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-833878f763.css"> ...转载 2019-12-12 11:11:58 · 2130 阅读 · 1 评论 -
Eclipse下设置tomcat,修改Java代码不必重启tomcat
Eclipse下设置tomcat,修改Java代码不必重启tomcat以前一直都是使用MyEclipse,在新公司原来项目比较大,使用MyEclipse无论是启动还是在编码过程中都非常慢,优化了也是。所以换了Eclipse,速度虽然提高了,但是有点非常不友好,就是不管我怎么修改Java代码,哪怕只有仅仅一行代码都需要重新启动,才能使修改代码生效,而这点MyEclipse就不需要了。由于我们项目较大...转载 2018-04-09 16:36:36 · 1001 阅读 · 0 评论 -
JVM原理核心机制
@本文来自:https://www.52pojie.cn/thread-811551-1-1.html类加载过程JVM 把 class 文件加载到内存,并对数据进行校验,解析和初始化,最终形成 JVM 可以直接使用的 JAVA 类型的过程。将Java类的二进制代码合并到JVM运行状态之中的过程验证:确保加载的类信息符合JVM规范,没有安全方面的问题。准备:正式为类变量 static 变量...转载 2018-10-24 10:38:19 · 185 阅读 · 0 评论 -
java.nio.charset.MalformedInputException: Input length = 1 mybatis绑定失败(主要有两个原因)
转载:蝴蝶飞丶不飞1.其中一个最容易找的原因是interface 和 xml的 namespace 对应不上2. 还有一种情况是application.yml的编码问题,会导致去是添加resouce的配置(如下)时出现java.nio.charset.MalformedInputException: Input length = 1,mybatis也绑定不上。此时应该做...转载 2019-08-20 10:24:32 · 581 阅读 · 1 评论 -
SpringBoot 整合 Druid Failed to configure a DataSource: 'url' attribute is not specified and no embed
启动项目后报:Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured. 异常。详细异常如下所示:Failed to configure a DataSource: ‘url’ attribute is not specifie...原创 2019-09-11 11:26:17 · 6379 阅读 · 1 评论