java
杰希默克
这个作者很懒,什么都没留下…
展开
-
Thymeleaf前后端传值 页面取值与js取值
目的: 后端通过Model传值到前端 页面通过Model取值显示 js通过Model取值作为变量使用1.后台Controller[code=java]@GetMapping("/last") public ApiResponse getQRPer(String uuid) throws WxErrorException{ WxMpQrCodeTicket原创 2017-11-22 12:00:09 · 123544 阅读 · 20 评论 -
SSM项目部署,启动tomcat报Context initialization failed异常
问题背景:项目有新版本上线,测试服通过测试,正式环境上线,报错,服务未启动。服务日志2018-09-04 14:28:56,987 [localhost-startStop-1][IP:|USER:][ERROR org.springframework.web.context.ContextLoader] Context initialization...原创 2018-09-04 17:04:05 · 3415 阅读 · 0 评论 -
SpringBoot 2.0整合Quartz,特别简单
SpringBoot2.0整合Quartz省去了很多繁琐的配置,针对新版本的Quartz进行了自动化配置(AutoConfiguration)。简单的来说,整个过程只需要两步:添加依赖、填写配置添加依赖在pom.xml配置文件中添加依赖,只需要依赖 spring-boot-starter-quartz<dependency> <groupId>org.spring...原创 2018-12-19 19:34:28 · 1868 阅读 · 1 评论 -
[Gerrit] git merge合并分支后,push远程时被拒绝! [remote rejected] HEAD -> refs/for/master (no new changes)
问题: 本地使用 git merge 把dev分支合并到master分支之后,push master分支到Gerrit时,提示:Total 0 (delta 0), reused 0 (delta 0)remote: Processing changes: refs: 1, doneTo ssh://xxx.xxx.xxx.xxx:xxxxx/{project_name} ! [remot...原创 2019-01-11 18:25:49 · 24443 阅读 · 2 评论 -
SpringBoot2.0整合Dubbo最简Demo——SpringBoot2.0+Dubbo+Zookeeper分布式服务发布与调用
我想了很多个开场白,但是你肯定都听过见过了,那咱们就直白点——怎么能弄明白Dubbo怎么用?当然是先写个Demo。在网上查了些资料,基本上都有坑,于是我就又㕛叒叕写了这篇。目的很简单,用最简单的方式让Dubbo的第一个Demo跑起来。依赖&lt;dependency&gt; &lt;groupId&gt;com.alibaba.boot&lt;/groupId&gt; &lt原创 2019-01-18 17:31:44 · 1823 阅读 · 1 评论