码迷,mamicode.com
首页 > Web开发 > 详细

idea+dubbo+zookeeper项目访问html页面的方法

时间:2018-11-06 15:13:32      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:mode   pen   int   后缀   source   ati   map   art   ppi   

将js,html文件放入consumer的resource的static和template文件中

1 consumer的pom需要引入模板的jar包

  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
  </dependency> 
 
2 consumer中的application.propertites中添加配置信息
 # 定位模板的目录
spring.thymeleaf.prefix=classpath:/template/
# 给返回的页面添加后缀名
spring.thymeleaf.suffix=.html 
 spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.cache: false  
 
3 需要在controller中配置路由信息
@RequestMapping("/login")
public String login(ModelMap map) {
return "integral";
}
 

 

idea+dubbo+zookeeper项目访问html页面的方法

标签:mode   pen   int   后缀   source   ati   map   art   ppi   

原文地址:https://www.cnblogs.com/sunsing123/p/9915275.html

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