-
大小: 195KB文件类型: .zip金币: 2下载: 0 次发布日期: 2021-06-03
- 语言: 其他
- 标签: springboot velocity maven
资源简介
SpringBoot1.4之后不再支持velocity,导致spring-boot-starter-velocity无法使用,本demo是SpringBoot1.5.x与velocity2集成demo,代码是基于http://download.csdn.net/download/qq_30023773/10032465改的,原代码是基于gradle的,并升级了springboot到目前最新的1.5.10

代码片段和文件信息
package com.example.demo;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import java.util.Map;
/**
* Created by Saber on 2018/2/24 下午1:13
*/
@Controller
@RequestMapping(“/“)
public class SpringBootTestController {
/**
* 首页
*
* @return
*/
@RequestMapping(“/“)
public String index(){
return “index“;
}
/**
* ajax test
*
* @param request
* @return
*/
@RequestMapping(“/ajax“)
@ResponseBody
public String ajaxTest(HttpServletRequest request) {
return “ajax 测试成功~“;
}
/**
* 页面测试
*
* @param map
* @return
*/
@RequestMapping(“/welcome“)
public String viewTest(Map map) {
map.put(“a“ “SpringBoot1.5.10+velocity 页面测试1“);
return “welcome“;
}
/**
* 页面测试2
*
* @return
*/
@RequestMapping(“/welcome2“)
public ModelAndView viewTest2() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.addobject(“a“ “SpringBoot1.5.10+velocity 页面测试2“);
modelAndView.setViewName(“welcome“);
return modelAndView;
}
/**
* 页面测试3
*
* @return
*/
@RequestMapping(“/welcome3“)
public ModelAndView viewTest3() {
ModelMap map = new ModelMap();
map.put(“a“ “SpringBoot1.5.10+velocity 页面测试3“);
return new ModelAndView(“view/welcome“ map);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-02-24 16:44 SpringBoot15_10-velocity2\
文件 6148 2018-02-24 16:54 SpringBoot15_10-velocity2\.DS_Store
目录 0 2018-02-24 16:54 __MACOSX\
目录 0 2018-02-24 16:54 __MACOSX\SpringBoot15_10-velocity2\
文件 120 2018-02-24 16:54 __MACOSX\SpringBoot15_10-velocity2\._.DS_Store
目录 0 2018-02-24 16:54 SpringBoot15_10-velocity2\.git\
文件 6148 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\.DS_Store
目录 0 2018-02-24 16:54 __MACOSX\SpringBoot15_10-velocity2\.git\
文件 120 2018-02-24 16:45 __MACOSX\SpringBoot15_10-velocity2\.git\._.DS_Store
目录 0 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\branches\
文件 15 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\COMMIT_EDITMSG
文件 323 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\config
文件 73 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\desc
文件 23 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\HEAD
目录 0 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\
文件 478 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\applypatch-msg.sample
文件 896 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\commit-msg.sample
文件 189 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\post-update.sample
文件 424 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\pre-applypatch.sample
文件 1642 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\pre-commit.sample
文件 1348 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\pre-push.sample
文件 4951 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\pre-reba
文件 544 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\pre-receive.sample
文件 1239 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\hooks\update.sample
文件 2203 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\index
目录 0 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\info\
文件 240 2018-02-24 16:44 SpringBoot15_10-velocity2\.git\info\exclude
目录 0 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\logs\
文件 158 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\logs\HEAD
目录 0 2018-02-24 16:45 SpringBoot15_10-velocity2\.git\logs\refs\
............此处省略206个文件信息
相关资源
- SpringBoot+H2+mybatis-plus59130
- 基于SSM+CXF构建的RESTFul webservice
- springboot+rabbitmq项目demo(亲测可正常运
- springboot整合RabbitMQ实现延时队列的两
- 关于Spring MVC项目maven中通过fileupload上
- 2017年-传智播客-张志君老师-SpringBoo
- springboot+mybatis整合实现注册登录
- springboot+webflux+mongodb+freemarker
- springboot整合activiti完整demo
- SpringBoot实战(第4版)清晰版.pdf.zip
- SpringBoot 中文文档
- springboot+jpa+thymeleaf实现增删改查分页
- es(elasticsearch)整合SpringCloudSpringBo
- Springboot日志开启SLF4J过程解析
- springboot全套教程2018年2.0版本
- 官网springboot项目
- SpringBoot+Mybatis+前后台隔离技术,完整
- apache-maven-3.6.0
- Spring Boot技术栈博客企业前后端2018
- springboot从入门到精通视频教程课程源
- SpringBoot +vue 框架项目.zip
- springBoot+security+oauth2 资源和认证分离
- maven+ssm框架视频上传预览.zip
- nexus-3.27.0-03包含windows和linux
- mavenRepository 仓库 依赖
-
maven settings.xm
l 直接使用 - nexus-3.20.1.unix.zip
- maven权威指南中文版+maven the definitiv
- maven私服tar包nexus_linux.zip
- Maven私服nexus安装包
评论
共有 条评论