idea实现第一个springboot程序

Posted xdr630

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea实现第一个springboot程序相关的知识,希望对你有一定的参考价值。

1.环境准备

  • JDK:1.8
  • Apache Maven: 3.6.1
  • IntelliJ IDEA 2019.1.3 x64
  • SpringBoot 1.5.9.RELEASE:1.5.9;

1.1、MAVEN设置:给maven 的settings.xml配置文件的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>

2.实现SpringBoot Helloworld 案例

浏览器发送hello请求,服务器接受请求并处理,响应Hello World字符串;

2.1、创建一个maven工程;(jar)

2.2、导入spring boot相关的依赖

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.9.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

3、编写一个主程序;启动Spring Boot应用


package com.xdr;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/*
@SpringBootApplication 来标注一个主程序
 */
@SpringBootApplication
public class HelloWorldApplication 
    public static void main(String[] args) 
        System.out.println("启动springboot程序");
        SpringApplication.run(HelloWorldApplication.class, args);
    

4、编写相关的Controller、Service

package com.xdr.com.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Controller 
    @RequestMapping("hello")
    public String sayHello()
        return "Hello SpringBoot";
    


5、运行主程序测试

在resource下创建application.properties文件写入

server.port=8082

把端口号改为8082,以免跟8080冲突
技术图片
访问项目
技术图片

6、简化部署

 <!-- 这个插件,可以将应用打包成一个可执行的jar包;-->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

将这个应用打成jar包,直接使用java -jar xxx.jar(xxx表示jar包的名称)的命令进行执行;
在idea自带Maven打包中
技术图片
技术图片
技术图片
刷新项目:
技术图片

以上是关于idea实现第一个springboot程序的主要内容,如果未能解决你的问题,请参考以下文章

idea中SpringBoot热部署时mapping偶然出现丢失的问题。

idea创建springboot项目

SpringBoot快速上手——《一》:初始SpringBoot,实现入门级程序

SpringBoot快速上手——《一》:初始SpringBoot,实现入门级程序

idea编写第一个springboot程序

精通系列)中