02、SpringBoot2入门

本文档介绍了SpringBoot2入门步骤,包括系统要求、创建Maven工程、引入依赖、编写主程序和业务代码,以及如何设置服务器端口和打包部署。通过实例展示了如何创建一个简单的"Hello, SpringBoot2"应用,并提供了可能出现的问题及解决办法。
摘要由CSDN通过智能技术生成

02、SpringBoot2入门

1、系统要求

  • Java 8 & 兼容java14 .

  • Maven 3.3+

  • idea 2019.1.2

1.1、maven设置

<mirrors>
      <mirror>
        <id>nexus-aliyun</id>
        <mirrorOf>central</mirrorOf>
        <name>Nexus aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
      </mirror>
  </mirrors>
 
  <profiles>
         <profile>
              <id>jdk-1.8</id>
              <activation>
                <activeByDefault>true</activeByDefault>
                <jdk>1.8</jdk>
              </activation>
              <properties>
                <maven.compiler.source>1.8</maven.compiler.source>
                <maven.compiler.target>1.8</maven.compiler.target>
                <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
              </properties>
         </profile>
  </profiles>

2、HelloWorld

需求:浏览发送/hello请求,响应 " Hello,Spring Boot 2 "

2.1、创建maven工程

2.2、引入依赖

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>
    </parent>


    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

    </dependencies>

2.3、创建主程序

/**
 * 主程序类
 * @SpringBootApplication:这是一个SpringBoot应用
 */
@SpringBootApplication
public class MainApplication {

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

2.4、编写业务

// @Controller
// @ResponseBody:所有的返回值不再是地址,而是以字符串形式写到浏览器页面上
@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String handle01(){
        return "Hello SpringBoot2!";
    }
}

2.5、测试

直接运行main方法,浏览器窗口输入http://localhost:8888/hello.

如果访问后出现 Whitelabel Error Page 的情况,则很可能是包的位置错误,因为程序只加载主程序MainApplication.java 所在包及其子包下的内容.

2.6、简化配置

可以在 application.properties 或application.yml 文件中设置所有的Spring Boot属性.使用时参考文档的 Spring Properties部分.

设置服务器的端口号:

server.port=8888

2.7、简化部署

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

把项目打成jar包,直接在目标服务器执行即可。

原理:IDEA中运行lifeStyle中的clean,package, 便可在target下生成一个 胖 jar包(里面包含了项目运行的所有环境信息,可以直接在cmd窗口启动起来.)命令: java -jar 目标jar包

注:目前不要使用deploy命令,因为这个是向私服上进行运行,必须先进行地址设置,才能使用.

注意点:

  • 如果运行不起来先取消掉cmd的快速编辑模式

以上笔记来源于 尚硅谷雷神SpringBoot2教程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱编程的大李子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值