其他分享
首页 > 其他分享> > springboot(一)

springboot(一)

作者:互联网

准备工作,

1、配置好JDK

2、IntelliJ编辑器

1、用IDEA新建spring boot项目

1、Developer Tools(必选)

         -Spring Boot DevTools

         -Lombok

2、Web (必选)

        -Spring Web

        -Spring Web Services 

3、Template Engines(可选,后期可在prom.xml文件中添加此依赖)

        -Thymeleaf

  

2、若编写Rest Api,则写入如下代码后,运行,直接访问http://localhost:8080/abc 即可

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

@RestController

public class DemoApplication {

    @RequestMapping("abc")
    public static String abc(){
        return "abc";
    }

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

}

3、若访问html,则需要以下配置

1、在resources/templates里面放置 html文件

2、在resources/static里面放置 css image js 等静态资源

3、在控制中写入如下代码

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller

public class DemoApplication {

    @GetMapping("def")
    public String he(){
        return "def";
    }

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

}

注:可以在application.properties配置项目

spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

 

 

标签:abc,springboot,spring,DemoApplication,springframework,static,public
来源: https://blog.csdn.net/sinat_37390744/article/details/115427818