美文网首页
第一个SpringBoot应用

第一个SpringBoot应用

作者: tingshuo123 | 来源:发表于2018-08-28 09:32 被阅读13次

    安装Spring插件

    在Eclipse上 Help >> Eclipse Marketplace 然后搜索Spring,选择Spring Tools 安装


    image.png

    使用Spring插件创建SpringBoot项目项目

    第一步:


    步骤1.png

    第二步,填写项目信息


    步骤2.png
    第三步,选择需要的模块
    image.png

    SpringBoot 项目结构

    结构.png

    插件主要生成三个文件
    Application 是启动类
    application.properties 是SpringBoot默认的配置文件,SpringBoot启动时会读取文件内容。
    pom 包含了项目需要的依赖信息
    其他的:
    static 存放静态资源如:css,image
    templates html 模板

    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.example</groupId>
        <artifactId>demo</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>war</packaging>
    
        <name>demo</name>
        <description>Demo project for Spring Boot</description>
    
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.5.15.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-web</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    
    
    </project>
    
    

    DemoApplication 类

    package com.example.demo;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    // 启动类
    @SpringBootApplication
    public class DemoApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(DemoApplication.class, args);
        }
    }
    

    自己编写的简单Controller

    package com.example.demo;
    
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;
    import org.springframework.web.bind.annotation.RestController;
    
    
    // @RestController = @Controller + @ResponseBody 默认返回JSON
    @RestController
    public class DemoController {
        @RequestMapping(value = "/demo", method = RequestMethod.GET)
        public String demo() {
            return "hello, world!";
        }
        
    }
    
    

    启动

    直接在启动类中,右键 run as –> Spring Boot App 即可。

    image.png

    相关文章

      网友评论

          本文标题:第一个SpringBoot应用

          本文链接:https://www.haomeiwen.com/subject/cdxfwftx.html