Idea搭建一个springbootWeb项目
一、开发工具及环境:
Idea(Ultimate): https://www.jetbrains.com/idea/download/#section=windows
jdk:1.8、maven
二、创建Springboot项目
1、选择创建一个新的项目 2、进行路径、包名的配置 3.项目名和项目存放位置 4.删除临时文件 5.resources为资源文件路径:存放propertie文件,static、templates目录存放前端页面文件:static存放 js、css文件,templates存放html等文件。 6.在com.edu.springboot建一个名为Demo的java文件 |package com.edu.springboot;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;
@RestController public class Demo { @RequestMapping("/index") private String index(){ return “hello world!”; } } 7.在SpringbootApplication类里运行 8.运行成功 9.访问