idea+dubbo+zookeeper项目访问html页面的方法
Posted 四六之间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea+dubbo+zookeeper项目访问html页面的方法相关的知识,希望对你有一定的参考价值。
将js,html文件放入consumer的resource的static和template文件中
1 consumer的pom需要引入模板的jar包
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</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.prefix=classpath:/template/
# 给返回的页面添加后缀名
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.cache: false
spring.thymeleaf.cache: false
3 需要在controller中配置路由信息
@RequestMapping("/login")
public String login(ModelMap map) {
return "integral";
}
以上是关于idea+dubbo+zookeeper项目访问html页面的方法的主要内容,如果未能解决你的问题,请参考以下文章
第一次搭建springboot+dubbo+zookeeper项目小结
IDEA中SSM框架转变为SOA dubbo框架 zookeeper注册中心
IDEA上创建 Maven SpringBoot + zookeeper +dubbo 实例