start.spring.io 访问不了怎么办?

简介: start.spring.io 访问不了怎么办?这个问题坑过我很多次,抽时间把start 官网的项目做了一个包装,增加了一个默认配置,以及定期更新的机制。移驾:https://gitee.com/pollyduan/spring-boot-initializrUI基于官方 0.4.0.release 目前官方UI已经更新,直接试了下不能平滑升级。

start.spring.io 访问不了怎么办?

这个问题坑过我很多次,抽时间把start 官网的项目做了一个包装,增加了一个默认配置,以及定期更新的机制。

移驾:https://gitee.com/pollyduan/spring-boot-initializr

UI基于官方 0.4.0.release 目前官方UI已经更新,直接试了下不能平滑升级。抽时间再搞一下吧。

目前就是旧版本的UI,使用起来毫无问题。

如果你很懒,可以直接使用如下方式启动doker容器。

docker run -tid --name spring-initializr -p 8080:8080 pollyduan/start_spring_io:latest

然后访问:http://127.0.0.1:8080 就可以了。

在Eclipse 中:

设置 - Spring - Boot - Initializr;
增加地址: http://127.0.0.1:8080 ,Apply 确认即可。

IDEA 我不用,自己看着办。

目录
相关文章
|
3月前
|
NoSQL Java Redis
【Azure Spring Cloud】Java Spring Cloud 应用部署到Azure上后,发现大量的 java.lang.NullPointerException: null at io.lettuce.core.protocol.CommandHandler.writeSingleCommand(CommandHandler.java:426) at ... 异常
【Azure Spring Cloud】Java Spring Cloud 应用部署到Azure上后,发现大量的 java.lang.NullPointerException: null at io.lettuce.core.protocol.CommandHandler.writeSingleCommand(CommandHandler.java:426) at ... 异常
|
3月前
|
Java 开发工具 Spring
【Azure Spring Cloud】使用azure-spring-boot-starter-storage来上传文件报错: java.net.UnknownHostException: xxxxxxxx.blob.core.windows.net: Name or service not known
【Azure Spring Cloud】使用azure-spring-boot-starter-storage来上传文件报错: java.net.UnknownHostException: xxxxxxxx.blob.core.windows.net: Name or service not known
|
5月前
|
存储 消息中间件 Java
Java一分钟之-Spring Cloud Config:外部化配置
【6月更文挑战第8天】Spring Cloud Config提供外部化配置,通过Config Server管理和版本控制微服务配置。本文涵盖Config Server与Client的配置、常见错误、多环境配置、实时更新及使用示例。注意配置服务器URL、环境变量设置、Bus配置以及安全问题。使用Config能提升系统灵活性和可维护性,但要留意日志以确保配置正确和安全。
143 10
|
6月前
|
NoSQL Java Redis
SpringBoot连接Redis出现io.lettuce.core.RedisCommandTimeoutException:Commandtimedout解决办法
SpringBoot连接Redis出现io.lettuce.core.RedisCommandTimeoutException:Commandtimedout解决办法
210 0
|
Java
Spring.io本地服务器解决超时问题
建本地服务器的方法,详情参考官方说明:https://github.com/spring-io/initializr
60 0
|
Java Spring
【异常】spring-boot配置文件中server.context-path不起作用的解决方案
背景:server.context-path不起作用 spring boot 项目路径默认是ip:port进入项目,通过在application配置文件添加 server.context-path属性,可自定义上下文,如 ip:port/server.context-path 而spring boot2.0之后,上下文的配置改为了 server.servlet.context-path。
993 0
【异常】spring-boot配置文件中server.context-path不起作用的解决方案
|
JSON 前端开发 Java
spring boot ---在前端代理服务器后面运行的情况( Running Behind a Front-end Proxy Server)
spring boot ---在前端代理服务器后面运行的情况( Running Behind a Front-end Proxy Server)
spring boot ---在前端代理服务器后面运行的情况( Running Behind a Front-end Proxy Server)
Java:SpringBoot启动时打印当前端口
Java:SpringBoot启动时打印当前端口
299 0
|
Java 应用服务中间件 Spring
运行Spring项目报错 “Web server failed to start. Port 8080 was already in use.”(二)
运行Spring项目报错 “Web server failed to start. Port 8080 was already in use.”(二)
556 0
运行Spring项目报错 “Web server failed to start. Port 8080 was already in use.”(二)
|
Java 应用服务中间件 容器
Spring Boot Server容器配置
参数配置容器 server.xx开头的是所有servlet容器通用的配置,server.tomcat.xx开头的是tomcat特有的参数,其它类似。 所有参数绑定配置类:org.springframework.boot.autoconfigure.web.ServerProperties 代码配置容器 除了利用上面的参数来自动配置servlet容器,还可以通过代码的方式。可以直接实现EmbeddedServletContainerCustomizer这个接口,ServerProperties也是实现这个接口的。