Spring Boot入门程序

原文链接: http://www.cnblogs.com/peng-zhang/p/9995481.html

创建第一个Spring Boot的入门程序。

开发环境

1.JDK 1.8

2.Eclipse

3.Tomcat 8

创建Spring Boot入门程序

创建工程

在Eclipse中,点击“File”——“New”——“Other”;

在弹出的对话框中输入“Maven”,选择“Maven Project”,点击“Next”;

Spring Boot入门程序_第1张图片

勾选第一个按钮,点击“Next”;

Spring Boot入门程序_第2张图片

下一步,配置工程信息,注意打包为jar

Spring Boot入门程序_第3张图片

点击“Finish”后,创建工程成功,工程目录结构如下:

Spring Boot入门程序_第4张图片

添加spring-boot依赖

打开工程的pom.xml文件,编辑,添加spring-boot的依赖

<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
    
    <modelVersion>4.0.0modelVersion>
    
    <groupId>com.zp.springbootgroupId>
    
    <artifactId>myfristspringbootartifactId>
    
    <version>0.0.1-SNAPSHOTversion>
    
    <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>2.0.3.RELEASEversion>
    parent>
    
    <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starterartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
    dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>
project>

Spring Boot入门程序_第5张图片

创建一个处理请求的controller

在工程的src-main-java下创建一个Package,命名为“Hello”,在“Hello”下创建一个Controller类,用于处理页面请求。

package hello;

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

@RestController
public class HelloController {
    @RequestMapping("/")
    public String hello(){
        return "Hello Spring Boot!";
    }

}

创建spring-boot启动类

在工程的src-main-java-hello下创建Application.java

package hello;

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

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

运行main方法:Ctrl+F11

Spring Boot入门程序_第6张图片

访问web应用

在浏览器中,访问Tomact中,创建的请求处理器Controller

在浏览器地址栏输入:http://localhost:8080

 Spring Boot入门程序_第7张图片

至此成功的创建了第一个spring-boot入门程序。

 

转载于:https://www.cnblogs.com/peng-zhang/p/9995481.html

你可能感兴趣的:(Spring Boot入门程序)