项目积累demo-01

Posted gosaint

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了项目积累demo-01相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

QT 实用代码片段

[工作积累] UE4 并行渲染的同步 - Sync between FParallelCommandListSet & FRHICommandListImmediate calls(代码片段

微信小程序代码片段

实际项目中积累的一些关于事件的简单应用JS代码段(能力有限,不喜轻喷,23333)

python 用于数据探索的Python代码片段(例如,在数据科学项目中)

项目积累对JSON数据的处理