我的第二个springboot项目 web+freemarker

上一篇文章讲了,创建了第一个springboot的项目,现在讲一下springboot的web+freemarker的项目;

1、首先引入依赖

        
            org.springframework.boot
            spring-boot-starter-web
            ${spring.boot.version}
        
        
            org.springframework.boot
            spring-boot-starter-freemarker
            ${spring.boot.version}
        

2、创建一个Application的类,用以启动web

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * Created by LK on 2016/5/7.
 */
@SpringBootApplication
public class SampleWebFreeMarkerApplication {
    public static void main(String[] args) {
        SpringApplication.run(SampleWebFreeMarkerApplication.class,args);
    }
}

3、创建一个Controller类,用来定向到view

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.Date;
import java.util.Map;

/**
 * Created by LK on 2016/5/7.
 */
@Controller
public class WebContrpller {
    @Value("${application.message:1234556677}")
    private String message = "hi,hello world......";

    @RequestMapping("/")
    public String web(Map model){
        model.put("time",new Date());
        model.put("message",this.message);
        return "web";//返回的内容就是templetes下面文件的名称
    }
}

4、在resources目录下创建templates文件夹,文件夹里面存放两个模板文件

4.1 error.ftl






	Something wrong: ${status} ${error}



4.2 web.ftl






	Date: ${time?date}
	
Time: ${time?time}
Message: ${message}


5、启动 SampleWebFreeMarkerApplication ,在浏览器上面输入 http://127.0.0.1:8080/ 即可输出页面如下:

我的第二个springboot项目 web+freemarker_第1张图片






你可能感兴趣的:(Spring-Boot)