网站开发工具 哪个好,百度品牌,站长工具搜一搜,在线做带字头像的网站在微服务开发时#xff0c;有时候某个服务可能并不需要是一个web项目#xff0c;这时候应该怎么做呢#xff1f;
去除pom中的web-starter 替换spring-boot-starter-web为spring-boot-starter#xff0c;如果其他pom引入了web则需要逐一排除 dependency…在微服务开发时有时候某个服务可能并不需要是一个web项目这时候应该怎么做呢
去除pom中的web-starter 替换spring-boot-starter-web为spring-boot-starter如果其他pom引入了web则需要逐一排除 dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter/artifactId/dependency配置文件指定为非Web应用spring:main:web-application-type: none启动方法指定非Web应用new SpringApplicationBuilder(XXX.class).web(WebApplicationType.NONE).run(args);