1. 程式人生 > >項目積累demo-01

項目積累demo-01

ram app 新建 plugins pan request gap gpo info

1 搭建Spring-Boot項目

  在這裏我使用intellij新建spring boot工程;

技術分享圖片

點擊next;

技術分享圖片

輸入Group以及artifact之後。點擊next.之後點擊web.接著finish就ok了技術分享圖片

測試案列,證明spring boot工程搭建完畢; ·1)依賴的pom.xml
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.gosaint.spring.boot.blog</groupId> <artifactId>initiallizr-start</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging
>jar</packaging> <name>initiallizr-start</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <
version>1.5.9.RELEASE</version> <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> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

測試demo(該類是程序自動生成的)

package com.gosaint.spring.boot.blog.initiallizrstart;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@EnableAutoConfiguration
@SpringBootApplication
public class InitiallizrStartApplication {

    @RequestMapping("/hello")
    @ResponseBody
    String home() {
        return "Hello World!";
    }
    public static void main(String[] args) {
        SpringApplication.run(InitiallizrStartApplication.class, args);
    }
}

啟動main()方法;如下所示

技術分享圖片

訪問localhost:8080/hello:

技術分享圖片

好了,就此一個Spring-Boot的web工程已經啟動了!

項目積累demo-01