使用IDEA创建SpringBoot Web项目

环境

  • 操作系统:Win10
  • JDK:1.8
  • 开发工具:idea
  • Maven

步骤

使用IDEA创建SpringBoot Web项目_第1张图片
使用IDEA创建SpringBoot Web项目_第2张图片
使用IDEA创建SpringBoot Web项目_第3张图片
使用IDEA创建SpringBoot Web项目_第4张图片
使用IDEA创建SpringBoot Web项目_第5张图片

修改html不重启应用直接生效

使用IDEA创建SpringBoot Web项目_第6张图片
Ctrl+Shift+Alt+/,选择Registry…,勾选“compiler.automake.allow.when.app.running”。

pom.xml文件内容改动时,立即更新依赖关系


    org.springframework.boot
    spring-boot-devtools
    true 

访问指定页面

http://localhost:8080/hello.html
使用IDEA创建SpringBoot Web项目_第7张图片

默认访问页面

http://localhost:8080/
使用IDEA创建SpringBoot Web项目_第8张图片

访问controller

Application.java需要至少与controller包同级。
使用IDEA创建SpringBoot Web项目_第9张图片

通过controller访问页面

@Controller
public class IndexController {
    @RequestMapping("/index")
    public String index(){
        return "/index.html";
    }
}

使用IDEA创建SpringBoot Web项目_第10张图片

通过controller获取数据

@Controller
public class IndexController {
    @RequestMapping("/hi")
    @ResponseBody
    public String home(){
        return "HI";
    }
}

使用IDEA创建SpringBoot Web项目_第11张图片

给controller设置访问路径名

@Controller
@RequestMapping("a")
public class IndexController {
    @RequestMapping("/hi")
    @ResponseBody
    public String home(){
        return "HI";
    }
}

使用IDEA创建SpringBoot Web项目_第12张图片

@RestController

@RestController相当于@ResponseBody + @Controller,比如你想访问页面,但访问的方法返回的都是数据。

@RestController
public class IndexController {
    @RequestMapping("/index")
    public String index(){
        return "/index.html";
    }
}

使用IDEA创建SpringBoot Web项目_第13张图片

修改应用使用的端口

在application.properties中设置,如:server.port=8081。
使用IDEA创建SpringBoot Web项目_第14张图片

修改应用访问根

在application.properties中设置,如:server.servlet.context-path=/demo。
使用IDEA创建SpringBoot Web项目_第15张图片

你可能感兴趣的:(笔记,开发环境)