SpringBoot简单入门

一、创建SpringBoot项目

1.创建maven项目,pom引入springboot父级启动器(starter)依赖:

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>myproject</artifactId> <version>0.0.1-SNAPSHOT</version> <!-- Inherit defaults from Spring Boot --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE</version> </parent> <!-- Add typical dependencies for a web application --> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <!-- Package as an executable jar --> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

2.使用STS\IDEA快速创建(推荐)
2.1创建一个Spring-Starter-project,勾选需要的模块

2.2编写业务代码,如我们常见的controller、service、dao和entity等,需要注意的是:这些包的路径需要与主程序XXXapplication同级或一下,因为主程序只扫描同级包以及子包。

如放在其它位置,则需要在主程序上加上注解:@ComponentScan(basePackages="包名")

3.运行

3.1主程序右键运行  run as 。。。

3.2打jar包运行  java -jar 包名(注意打包jdk版本与运行环境jdk版本一致)

4.访问

 

 

 

转载于:https://www.cnblogs.com/Oven1993/p/10740589.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值