yangyoupeng

交接提交

......@@ -18,7 +18,7 @@ public class ServiceLRUCache {
}
public ServiceLRUCache(int capacity) {
this.capacity = capacity;
this.serviceLRUcache = new ConcurrentHashMap<String, AbstractService>(200);
this.serviceLRUcache = new ConcurrentHashMap<String, AbstractService>(capacity);
}
/**
* serialVersionUID:TODO
......
......@@ -3,7 +3,7 @@ application.message=\u8D75\u6D8C\u5728\u7EBFAPI GateWay\u6B22\u8FCE\u60A8
spring.application.name=apigateway
server.port=80
#server.address=192.168.0.162
server.address=192.168.1.102
#server.address=192.168.1.102
es.host=192.168.0.162
es.port=9300
......