码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot---基本配置

时间:2018-09-06 12:28:13      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:boot   mave   本地   star   scope   标签   方法   depend   work   

1、首先在pom.xml添加对HTML的相关依赖

/**
 * pom.xml文件
 */
<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>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>**

2、在application.yml文件添加SpringBoot相关配置

spring:

  thymeleaf:
    prefix: classpath:/templates/

注意:application.yml 如果是空文件,则默认视图文件存放在
templates文件下,资源文件存放在static目录下,由于SpringBoot对jsp支持不太友好,一般使用自带的标签实现数据的赋值

技术分享图片

在Controller里面写跳转HTML页面方法

@Controller  //注意这里必须为Controller
public class HelloController {

    /**
     * 本地访问内容地址 :http://localhost:8080/lmycc/hello
     * @param map 传递参数
     * @return
     */
    @RequestMapping("/hello")
    public String helloHtml(HashMap<String, Object> map) {
        map.put("hello", "欢迎进入HTML页面");
        return "/index";
    }
}

SpringBoot---基本配置

标签:boot   mave   本地   star   scope   标签   方法   depend   work   

原文地址:https://www.cnblogs.com/csguo/p/9597124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!