您的位置:首页 > 编程语言 > Java开发

Spring cloud

2016-06-20 00:00 489 查看
摘要: Spring cloud

slidecar方式将其他应用注册到gateway

sidecar:
port: 2000
health-uri: http://localhost:2000/health
nodejs提供心跳接口

exports.health = createProcessor(function(req, res, next) {
logger.info('health');
res.json({status:"UP"});
});

maven update 时出现如下错误:

Missing artifact antlr:antlr:jar:2.7.7 pom.xml /wxcop line 1 Maven Dependency Problem

原因时前一次更新又失败,再次更新没有覆盖。解决办法,删除失败的文件,重新update。

cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: