
java错误类型
Ethan0396
这个作者很懒,什么都没留下…
展开
-
Spring Cloud Gateway启动报错
Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this time. Please remove spring-boot-starter-web dependency.问题解析:最后一句是:请移除spring-boot-starter-web的依赖项目是有一个common的公共依赖模块解决方案:所以在pom.xml中引入了common的依赖,可以在依赖中一处web <!--原创 2020-09-09 16:12:25 · 733 阅读 · 0 评论 -
启动就结束 报错:Process finished with exit code 0
Process finished with exit code 0No active profile set, falling back to default profiles: defaultNo spring.application.name found, defaulting to ‘application’报错内容:2020-09-08 18:01:50.917 INFO 2740 --- [ main] c.a.g.coupon.GulimallCouponAppli原创 2020-09-08 18:07:04 · 1868 阅读 · 3 评论 -
gulimall谷粒商城:vagrant中虚拟机linux的/dev/sda1硬盘满了
缘由:在bilibili上的找了基于SpringBoot+Redis+mybatis电商商城,在刚开始的时候配置环境,这里使用的是vritulbox + vagrant + coentos7.在安装docker的时候,出现一下这些错误:/dev/sda1沾满(这里是解决以后的内存情况)No such file or directory ----->翻译过来是:没有这样的文件或目录Cannot connect to the Docker daemon at unix:///var/run/原创 2020-08-08 21:33:20 · 2130 阅读 · 4 评论 -
集群中多个Tomcat启动失败,window下多个Tomcat启动
这是启动第二个Tomcat报错的,日志中明显是启动的还是第一个Tomcat的路径以下是报错09-Jul-2020 16:08:59.391 严重 [main] org.apache.catalina.core.StandardService.initInternal Failed to initialize connector [Connector[AJP/1.3-8009]] org.apache.catalina.LifecycleException: Failed to initialize co原创 2020-07-09 16:33:05 · 212 阅读 · 0 评论 -
no declaration can be found for element ‘mvc:interceptors‘.错误
<mvc:interceptors> 原因是没有导入表头,只要添加表头就可以了,可以直接复制我这段代码替换表头<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="..原创 2020-07-06 11:08:14 · 653 阅读 · 0 评论 -
BindingException: Invalid bound statement (not found) 找不到 mapper文件夹中 *Mapperxml 配置文件
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.yfl.mapper.UserMapper.selUserByNamePass我这里是分模块项目 ,mapper模块中出现问题这里报错 很明显是com.yfl.mapper.UserMapper.selUserByNamePass 这个路径下的UserMapper.java接口文件中的selUserByNamePass 这个方法映.原创 2020-07-04 16:45:01 · 748 阅读 · 0 评论 -
idea从SVN 或 GIT 导入项目 xml文件 和 .idea爆红解决
idea从SVN 或 GIT 导入项目 xml文件 和 .idea爆红解决使用IDEA创建一个maven工程,目录结构中会产生了两个不一样的东西——分别是 .iml文件和.idea文件夹。**iml是 intellij idea的工程配置文件**,里面是当前project的一些配置信息。.**Idea存放项目的配置信息**,包括历史记录,版本控制信息等,可以不理会。我们也可以配置隐藏将其不显示。点击file->Settings->File types,在右下...原创 2020-07-02 17:08:42 · 2273 阅读 · 0 评论