使⽤Maven项⽬搭建SpringBoot框架的简单web项⽬。
⽬录
前⾔:
对于能够⾃⼰搭建框架,并且也有⾃⼰的快速开发框架的程序员来说,SpringBoot并没有多⼤的魅⼒,⽽且这么⽅便的东西⽤起来着实⽆聊。
但是⼤家都在⽤,来凑个热闹。
搭建步骤:
1、新建Maven项⽬⾻架。
2、l⽂件中,继承SpringBoot的Maven模版
也就是SpringBoot的基本依赖(也就是⼈家帮你配置好了)
<!-- 继承Spring boot 相关依赖(免去⾃⼰配置) -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
</parent>
3、l⽂件中,添加web项⽬所需的依赖
去除junit的版本(因为SpringBoot的parent⾥已经定义了版本,他们已经处理了各种依赖的版本冲突问题)
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- 如果是web应⽤,需要引⼊的web相关依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
4、l⽂件中,添加SpringBoot项⽬打包需要的插件依赖
<build>
<plugins>
<!-- Spring boot 打包插件 -->
<plugin>
适合新手的spring boot<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
5、执⾏maven update project.
6、添加index.html主页。
7、添加SpringBoot启动⼊⼝类
只要添加这2个红框,⽤什么类都可以。直接当作普通的main函数执⾏就⾏。
8、访问127.0.0.1
(默认端⼝8080,可以进⾏配置)
9、源码:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论