首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
编程语言
> 详细
Spring Boot开发
时间:
2015-04-28 09:57:48
阅读:
206
评论:
0
收藏:
0
[点我收藏+]
标签:
今天来看下,如何在Spring Boot中使用热加载和集成Velocity,废话不多说,直接看下面的maven的pom依赖:
Xml代码
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
project
xmlns
=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi
=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
http://www.w3.org/2001/XMLSchema-instance "
>
<
modelVersion
>
4.0.0
</
modelVersion
>
<
groupId
>
serachrate
</
groupId
>
<
artifactId
>
serachrate
</
artifactId
>
<
version
>
1.0-SNAPSHOT
</
version
>
<!--父依赖-->
<
parent
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-parent
</
artifactId
>
<
version
>
1.2.2.RELEASE
</
version
>
</
parent
>
<!--指定编码-->
<
properties
>
<
project.build.sourceEncoding
>
UTF-8
</
project.build.sourceEncoding
>
</
properties
>
<
build
>
<
pluginManagement
>
<
plugins
>
<
plugin
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-maven-plugin
</
artifactId
>
</
plugin
>
</
plugins
>
</
pluginManagement
>
<
plugins
>
<
plugin
>
<!--
比较常用的打包命令
mvn clean package spring-boot:repackage
只有使用下面的maven命令在cmd窗口启动,
热加载才能生效,如果直接Run运行的Application是
不支持热加载的
mvn clean spring-boot:run
--
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-maven-plugin
</
artifactId
>
<
version
>
1.2.2.RELEASE
</
version
>
<
dependencies
>
<!--引入springloaded来实现动态加载-->
<
dependency
>
<
groupId
>
org.springframework
</
groupId
>
<
artifactId
>
springloaded
</
artifactId
>
<
version
>
1.2.0.RELEASE
</
version
>
</
dependency
>
</
dependencies
>
<
executions
>
<
execution
>
<
goals
>
<
goal
>
repackage
</
goal
>
</
goals
>
<
configuration
>
<
classifier
>
exec
</
classifier
>
</
configuration
>
</
execution
>
</
executions
>
<
configuration
>
<!-- <mainClass>com.dhgate.rate.ApplicationSearch</mainClass> -->
<!--指定监听的端口号-->
<
jvmArguments
>
-Xdebug
-Xrunjdwp:transport
=
dt_socket
,
server
=
y
,
suspend
=n,
address
=
7777
</
jvmArguments
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
<
dependencies
>
<!--web容器支持-->
<
dependency
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-web
</
artifactId
>
<!--本例中散仙排除了tomcat,而使用jetty作为容器-->
<
exclusions
>
<
exclusion
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-tomcat
</
artifactId
>
</
exclusion
>
</
exclusions
>
</
dependency
>
<
dependency
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-jetty
</
artifactId
>
</
dependency
>
<!-- 安全验证
<
dependency
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-security
</
artifactId
>
</
dependency
>
--
>
<!--Velocity引擎的支持,如果你需要其他的模板引擎,则-->
<!--可以直接引入其他的即可-->
<
dependency
>
<
groupId
>
org.springframework.boot
</
groupId
>
<
artifactId
>
spring-boot-starter-velocity
</
artifactId
>
</
dependency
>
<!--性能指标和监测-->
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-actuator</artifactId>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-remote-shell</artifactId>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-security</artifactId>-->
<!--</dependency>-->
<!--Guava包的依赖支持-->
<
dependency
>
<
groupId
>
com.google.guava
</
groupId
>
<
artifactId
>
guava
</
artifactId
>
<
version
>
16.0.1
</
version
>
</
dependency
>
<!--Gson支持-->
<
dependency
>
<
groupId
>
com.google.code.gson
</
groupId
>
<
artifactId
>
gson
</
artifactId
>
<
version
>
2.3.1
</
version
>
</
dependency
>
<!--Jsoup支持-->
<
dependency
>
<
groupId
>
org.jsoup
</
groupId
>
<
artifactId
>
jsoup
</
artifactId
>
<
version
>
1.8.1
</
version
>
</
dependency
>
<!--solrj的依赖包 -->
<
dependency
>
<
groupId
>
org.apache.solr
</
groupId
>
<
artifactId
>
solr-solrj
</
artifactId
>
<
version
>
4.3.1
</
version
>
</
dependency
>
</
dependencies
>
</
project
>
上面已经引入了Spring Loaded框架以及Velocity模板引擎,所以项目就会支持这两种技术,需要注意的是在pom里面关于Sprig Loaded的配置,否则将不会生效,另外建议把IDEA的自动编译保存功能打开,这样一来,Velocity的模板也会自动刷新。
在Spring Boot中不管集成任何东西,都是这么简单的事情,只需稍微变更pom依赖,即可完成,非常便利。
关于Velocity的标签的使用,散仙抽空会在补充一下用法,整体感觉,比Struts和el表达式标签或者jsp里面的标签,简单得多,而且支持宏定义,用起来非常给力。
在Spring Boot中,我们只需要在resource文件夹下,新建一个tmplates的文件夹来存放vm模板即可,然后我们就可以在后台的控制器里面,控制返回到那个vm了,而且数据也是从后台传过来的。
一个简单的例子:
Java代码
@RequestMapping
(
"/hello"
)
public
String hello(Map<String, Object> model){
List<String> l= Lists.newArrayList();
l.add(
"哈喽,hadoop"
);
l.add(
"哈喽,hbase"
);
l.add(
"哈喽,hive"
);
l.add(
"哈喽,pig"
);
l.add(
"哈喽,zookeeper"
);
l.add(
"哈喽,三劫散仙"
);
//将数据存放map里面,可以直接在velocity页面,使用key访问
model.put(
"data"
,l);
return
"hello"
;
}
模板部分:
velocity代码:
Java代码
#foreach($s in $data)
<h1 style=
"color: crimson"
>访问数据:$s</h1>
#end
结果如下:
关于动态加载和编译的部分,大家可以自行在自己的环境中测试。
关于spring boot打包和maven启动的两个命令如下:
Java代码
//打包编译该spring boot项目
mvn clean
package
spring-boot:repackage
//以maven方式启动该项目,spring loaded必须使用此启动方法,才能生效
mvn clean spring-boot:run
Spring Boot开发
标签:
原文地址:http://my.oschina.net/u/2273085/blog/407062
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
Spring Cloud 从入门到精通(一)Nacos 服务中心初探
2021-07-29
基础的排序算法
2021-07-29
SpringBoot|常用配置介绍
2021-07-29
关于 .NET 与 JAVA 在 JIT 编译上的一些差异
2021-07-29
C语言常用函数-toupper()将字符转换为大写英文字母函数
2021-07-29
《手把手教你》系列技巧篇(十)-java+ selenium自动化测试-元素定位大法之By class name(详细教程)
2021-07-28
4-1 YAML配置文件 注入 JavaBean中
2021-07-28
【python】 用来将对象持久化的 pickle 模块
2021-07-28
马拉车算法
2021-07-28
用Python进行冒泡排序
2021-07-28
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!