springboot应用搭建
springboot应用搭建
环境准备
Maven配置
修改Maven的settings.xml文件
配置Maven镜像提高下载速度
<mirror> |
配置Maven的profiles标签添加profile
<profile> |
IDEA配置
- 点击 Configure —> 选择Structure for New Projects
- 选择Project —> 选择jdk版本为1.8 —> 点击OK
- 点击Configure —> 选择Settings
- 选择Builld Tools下的Maven —> 配置Maven仓库地址 (Maven要大于3.3的) —>点击OK
- 点击Create New Project
- 选择Maven —> 选择SDK大于或等于1.8的 —>点击Next
- 填写GroupID和Artifactd —> 点击Next
- 填写项目名称和项目地址—>点击Finish
在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>cn.tx.springboot</groupId>
<artifactId>tx_sboot</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- 该工程下的子工程module -->
<!-- <modules>
<module>springboot-first</module>
<module>springboot-profile</module>
<module>java-spi</module>
<module>springboot-datasource</module>
</modules> -->
<!-- 设置为父工程 -->
<packaging>pom</packaging>
<!-- starter-parent里面管理了springboot所有的starter -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.10.RELEASE</version>
</parent>
<dependencies>
<!-- web服务依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 代码自动提示依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>在src/main/java包下创建一个cn.tx.springboot子包,并在这个子包下创建一个TestController.java文件:
package cn.tx.springboot;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
public class TestController {
public String hello(){
System.out.println("访问hello界面!");
return "hello springboot!";
}
}在cn.tx.springboot包下创建一个启动类FirstSpringApplication.java文件:
package cn.tx.springboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
public class FirstSpringApplication {
public static void main(String[] args) {
SpringApplication.run(FirstSpringApplication.class,args);
}
}现在运行启动类的main函数,访问(http://localhost:8080/test/hello)便可以看到访问成功界面,如下图所示:
可以再resources目录下创建一个application.properties文件,并在文件中配置服务访问的端口号:
8081 =
评论