如何快速搭建一个springboot项目

1、打开IDEA,File --> new project —> 选择左侧栏中的spring initializr.

spring boot手动搭建 spring boot快速搭建_spring boot


2、选中直接next!进入这个页面填写好具体的web项目初始信息,再次next!

spring boot手动搭建 spring boot快速搭建_spring_02


3、在dependencies选中Web中的spring Web,再次next!

spring boot手动搭建 spring boot快速搭建_spring boot_03

4、经历一段时间maven下载相关依赖,下载完成后我们的初始springboot项目这样就搭建成功啦!这是目录。

spring boot手动搭建 spring boot快速搭建_spring boot_04


5、把一些没用的目录删除后,目录就清楚明了啦

spring boot手动搭建 spring boot快速搭建_java_05

自动生成了一个主函数如下

@SpringBootApplication
public class DemoApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

生成的@SpringBootApplication下的主函数是什么?

通过对@SpringBootApplication的不断深入,惊喜的发现他居然是个@Component !! 原来只是一个spring组件呀。

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
    @AliasFor(
        annotation = Component.class
    )
    String value() default "";
    boolean proxyBeanMethods() default true;
}

但通过仔细观察我们可以看到@SpringBootApplication的作用等价于同时组合使用@EnableAutoConfiguration,@ComponentScan,@SpringBootConfiguration.

编写一个hello接口并访问

spring boot手动搭建 spring boot快速搭建_spring_06


运行成功!

spring boot手动搭建 spring boot快速搭建_spring boot_07

我们都知道springboot的特点是将一个服务打成jar包,现在我们用maven打一个jar包并运行一下吧~

  1. 在右侧栏maven选中package打包
  2. 经过一段时间,console中显示打包成功!
  3. 然后在项目目录的target中可以看到生成了一个jar包,下面我们打开windows命令运行一下这个jar.
  4. 我们可以发现,这和在IDEA运行项目几乎一模一样!这也体现了springboot生成的jar中是内嵌了tomcat的。

在地址栏输入我们的hello接口,访问成功!

spring boot手动搭建 spring boot快速搭建_spring boot手动搭建_08

这样我们的第一个Springboot项目就搭建成功啦,但是如果我们要集成更多功能还需要进一步的搭建,但我们的地基已经搭建完毕啦。

是不是很简单呢? 接来下我们要进一步去学习springboot集成更多内容和一些内部原理,希望对大家有所帮助~