Spring Boot入门(第二课,自动创建Spring Boot web项目)

地址:https://start.spring.io/

下载完成解压、导入

看下项目 的pom文件

看下pom文件,全是自动的

<?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.jbz</groupId>
	<artifactId>jbz-springboot</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>jbz-springboot</name>
	<description>Demo project for Spring Boot</description>

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.3.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-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>

导入之后可以直接debug启动

虽然启动成功,但是访问http://localhost:8080 ,提示404,因为我们没有写任何东西

我们需要自己从新写一个测试类

package com.jbz.jbzspringboot.controller;

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

/**
 * @author mingjian xu
 * @date 2018-07-30
 * @describe 解释用途
 */
@Controller
@EnableAutoConfiguration
public class SimpleController {

    @RequestMapping("/home")
    @ResponseBody
    String home(){
        return "hello world!";
    }

}

启动还是在默认JbzSpringbootApplication的main方法

访问http://localhost:8080/ 看到以下页面算成功搭建

猜你喜欢

转载自blog.csdn.net/Ming_key/article/details/81284872
今日推荐