解决办法也很简单就是把spring boot 的web starter 去掉就OK了。 我的项目结构是:parent_pom 引入了web-starter 然后在maven 子项目中引入了gateway 1: 我的解决方案 所以我直接把parent pom 中的web starter去掉就OK了 父pom中注释掉web starter:
pom <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>hospita...
spring mvc的文件上传需要依赖commons-io和commons-fileupload来一起实现 前提 假设关于spring mvc的依赖、配置等已经正常且可以使用,在文中不再对那一部分进行说明 依赖 使用maven进行管理,需要的依赖包括有 <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version...
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> </dependency> <!-- 服务注册 --> <dependency> <group...