首页 > 代码库 > 像屎一样的 Spring Boot入门,总算有反应了

像屎一样的 Spring Boot入门,总算有反应了

我特么最烦的就是现在Java不知道抽什么风,喜欢用maven这种,怎么搞都会有错误提示的玩意。搞个spring boot,官方的所谓http://start.spring.io/生成的项目启动不了。

猫了个咪的,开发java,估计50%的时间在搞环境,最后发现两篇好文章,总算把Spring Boot跑起来了。

https://dzone.com/articles/spring-boot-a-quick-start

https://javabrains.io/courses/spring_bootquickstart/lessons/Creating-a-Spring-Boot-project

这里就不废话了,直接一步入门。

1. 首先在eclipse,新建一个maven项目,记得选择:Create a simple project.

技术分享

然后那个狗日的maven就会一直跑啊跑,几分钟后,总算停下来了。

 

2. 修改pom。xml文件:

技术分享

加入两个配置:

<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">  <modelVersion>4.0.0</modelVersion>  <groupId>aaa</groupId>  <artifactId>bbb</artifactId>  <version>0.0.1-SNAPSHOT</version>      <parent>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-parent</artifactId>      <version>1.5.1.RELEASE</version>    </parent>    <dependencies>        <dependency>          <groupId>org.springframework.boot</groupId>          <artifactId>spring-boot-starter-web</artifactId>        </dependency>    </dependencies>  </project>

这里ide会提示很多叉叉,项目跑不起来的时候,就开始到处怀疑这些叉叉是不是问题。其实,毫无关系。不用管他。

 

3.添加个App和Controller:

技术分享

package bbb;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;@SpringBootApplicationpublic class App implements EmbeddedServletContainerCustomizer {    public static void main(String[] args) {        SpringApplication.run(App.class, args);    }    public void customize(ConfigurableEmbeddedServletContainer arg0) {        arg0.setPort(8088);    }}
package bbb;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class HelloGbController {    @GetMapping    public String helloGb() {        return "Gaurav Bytes says, \"Hello There!!!\"";    }}

我这里指定了端口,因为有冲突。最后启动!!!

 

技术分享

总算看到了有反应了。

技术分享

 

妈的,一个下午就这样没了,各种垃圾的所谓入门教程。

 

  

 

像屎一样的 Spring Boot入门,总算有反应了