PHP速学视频免费教程(入门到精通)
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
使用IDEA创建SpringBoot项目
1.打开idea,创建新项目,选择spring initializr
2.输入Artifact
3.勾选Web
4.点击finish完成
5.进入项目,可以将以下内容删除
pom.xml文件:
<?xml version="1.0" encoding="UTF-8"?><project 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>com.example</groupid><artifactid>springbootdemo</artifactid><version>0.0.1-SNAPSHOT</version><packaging>jar</packaging><name>springbootdemo</name><description>Demo project for Spring Boot</description><!--起步依赖--><parent><groupid>org.springframework.boot</groupid><artifactid>spring-boot-starter-parent</artifactid><version>1.5.2.RELEASE</version><relativepath></relativepath> <!-- lookup parent from repository --> </parent><properties><project.build.sourceencoding>UTF-8</project.build.sourceencoding><project.reporting.outputencoding>UTF-8</project.reporting.outputencoding><java.version>1.8</java.version></properties><dependencies><!--开发web项目相关依赖--><dependency><groupid>org.springframework.boot</groupid><artifactid>spring-boot-starter-web</artifactid></dependency><!--springboot单元测试--><dependency><groupid>org.springframework.boot</groupid><artifactid>spring-boot-starter-test</artifactid><scope>test</scope></dependency></dependencies><!--maven构建--><build><plugins><plugin><groupid>org.springframework.boot</groupid><artifactid>spring-boot-maven-plugin</artifactid></plugin></plugins></build></project>
6.创建一个HelloController
package com.example; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/hello") public String hello() { return "hello,this is a springboot demo"; } }
7.程序自动生成的SpringbootdemoApplication,会有一个@SpringBootApplication的注解,这个注解用来标明这个类是程序的入口
package com.example; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; //入口 @SpringBootApplication public class SpringbootdemoApplication { public static void main(String[] args) { SpringApplication.run(SpringbootdemoApplication.class, args); } }
@SpringBootApplication开启了Spring的组件扫描和springboot的自动配置功能,相当于将以下三个注解组合在了一起
(1)@Configuration:表名该类使用基于Java的配置,将此类作为配置类
(2)@ComponentScan:启用注解扫描
(3)@EnableAutoConfiguration:开启springboot的自动配置功能
8.运行SpringbootdemoApplication类
9、测试:
在地址栏中输入http://localhost:8080/hello
9.使用启动jar包的方式启动
(1)首先进入项目所在目录,如果是mac系统在项目上右键,选择Reveal in Finder,Windows系统在项目上右键选择Show in Explorer,即可打开项目所在目录
(2)打开终端,进入项目所在目录
cd /Users/shanml/IdeaProjects/SpringbootDemo
输入mvn install,构建项目
(3)构建成功后,在项目target文件夹下会多出一个jar包
(4)使用java -jar springbootdemo-0.0.1-SNAPSHOT.jar
启动jar包即可
推荐教程: 《java教程》
已抢4968个
抢已抢68196个
抢已抢11938个
抢已抢42350个
抢已抢167420个
抢已抢79371个
抢