Spring Boot + Velocity 极简demo

1. 首先加入需要的maven依赖


<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>1.3.7.RELEASEversion>
parent>

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-velocityartifactId>
dependency>

2. Controller代码

@Controller
@RequestMapping("/index")
public class IndexController {

    @RequestMapping("/")
    public String index(ModelMap modelMap) {
        modelMap.addAttribute("name", "ruzun");
        return "index";
    }
}

3. vm页面

inde.vm

<html>
<body>
hello world, $name
body>
html>

index.vm页面放在/resources/templates/ 下, 这是默认位置

Spring Boot + Velocity 极简demo_第1张图片

4. 运行

Spring Boot + Velocity 极简demo_第2张图片

你可能感兴趣的:(J2EE开发工具)