com.networknt.utility.Util类的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(230)

本文整理了Java中com.networknt.utility.Util类的一些代码示例,展示了Util类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util类的具体详情如下:
包路径:com.networknt.utility.Util
类名称:Util

Util介绍

[英]Generic utilities
[中]通用实用程序

代码示例

代码示例来源:origin: networknt/light-4j

  1. @Override
  2. public void handleRequest(final HttpServerExchange exchange) throws Exception {
  3. // check if the cid is in the request header
  4. String cId = exchange.getRequestHeaders().getFirst(HttpStringConstants.CORRELATION_ID);
  5. if(cId == null) {
  6. // if not, generate a UUID and put it into the request header
  7. cId = Util.getUUID();
  8. exchange.getRequestHeaders().put(HttpStringConstants.CORRELATION_ID, cId);
  9. }
  10. // Add the cId into MDC so that all log statement will have cId as part of it.
  11. MDC.put(CID, cId);
  12. //logger.debug("Init cId:" + cId);
  13. Handler.next(exchange, next);
  14. }

代码示例来源:origin: networknt/light-4j

  1. public Map<String, Object> getHost(HttpServerExchange exchange) {
  2. Map<String, Object> hostMap = new LinkedHashMap<>();
  3. String ip = "unknown";
  4. String hostname = "unknown";
  5. InetAddress inetAddress = Util.getInetAddress();
  6. ip = inetAddress.getHostAddress();
  7. hostname = inetAddress.getHostName();
  8. hostMap.put("ip", ip);
  9. hostMap.put("hostname", hostname);
  10. hostMap.put("dns", exchange.getSourceAddress().getHostName());
  11. return hostMap;
  12. }

代码示例来源:origin: networknt/light-4j

  1. public Map<String, Object> getDeployment() {
  2. Map<String, Object> deploymentMap = new LinkedHashMap<>();
  3. deploymentMap.put("apiVersion", Util.getJarVersion());
  4. deploymentMap.put("frameworkVersion", getFrameworkVersion());
  5. return deploymentMap;
  6. }

代码示例来源:origin: networknt/light-rest-4j

  1. normalisedValue = Util.quote(value);

代码示例来源:origin: networknt/light-oauth2

  1. private String jwtReference(String jwt, String clientId) {
  2. String uuid = Util.getUUID();
  3. Map<String, String> referenceMap = new HashMap<>();
  4. referenceMap.put("jwt", jwt);
  5. if(clientId != null) {
  6. referenceMap.put("clientId", clientId);
  7. }
  8. CacheStartupHookProvider.hz.getMap("references").set(uuid, referenceMap);
  9. return uuid;
  10. }
  11. }

代码示例来源:origin: networknt/light-4j

  1. public MetricsHandler() {
  2. commonTags.put("apiName", Server.config.getServiceId());
  3. commonTags.put("environment", Server.config.getEnvironment());
  4. InetAddress inetAddress = Util.getInetAddress();
  5. // On Docker for Mac, inetAddress will be null as there is a bug.
  6. commonTags.put("ipAddress", inetAddress == null ? "unknown" : inetAddress.getHostAddress());
  7. commonTags.put("hostname", inetAddress == null ? "unknown" : inetAddress.getHostName()); // will be container id if in docker.
  8. if(logger.isDebugEnabled()) {
  9. logger.debug(commonTags.toString());
  10. }
  11. }

代码示例来源:origin: networknt/light-4j

  1. return;
  2. String version = Util.getJarVersion();
  3. String service = config.getServiceId();
  4. String tempDir = System.getProperty("java.io.tmpdir");

代码示例来源:origin: networknt/light-oauth2

  1. codeMap.put("userId", userId);
  2. String code = Util.getUUID();
  3. String redirectUri = params.get("redirect_uri");
  4. if(redirectUri == null) {

代码示例来源:origin: networknt/light-4j

  1. logger.info("Registry IP from STATUS_HOST_IP is " + ipAddress);
  2. if (ipAddress == null) {
  3. InetAddress inetAddress = Util.getInetAddress();
  4. ipAddress = inetAddress.getHostAddress();
  5. logger.info("Could not find IP from STATUS_HOST_IP, use the InetAddress " + ipAddress);

代码示例来源:origin: networknt/light-oauth2

  1. String code = Util.getUUID();
  2. String redirectUri = params.get("redirect_uri");
  3. if(redirectUri == null) {

代码示例来源:origin: com.networknt/metrics

  1. public MetricsHandler() {
  2. commonTags.put("apiName", Server.config.getServiceId());
  3. commonTags.put("environment", Server.config.getEnvironment());
  4. InetAddress inetAddress = Util.getInetAddress();
  5. // On Docker for Mac, inetAddress will be null as there is a bug.
  6. commonTags.put("ipAddress", inetAddress == null ? "unknown" : inetAddress.getHostAddress());
  7. commonTags.put("hostname", inetAddress == null ? "unknown" : inetAddress.getHostName()); // will be container id if in docker.
  8. if(logger.isDebugEnabled()) {
  9. logger.debug(commonTags.toString());
  10. }
  11. }

代码示例来源:origin: networknt/light-oauth2

  1. processAudit(exchange);
  2. } else {
  3. String code = Util.getUUID();
  4. final SecurityContext context = exchange.getSecurityContext();
  5. String userId = context.getAuthenticatedAccount().getPrincipal().getName();

代码示例来源:origin: networknt/light-oauth2

  1. processAudit(exchange);
  2. } else {
  3. String code = Util.getUUID();
  4. final SecurityContext context = exchange.getSecurityContext();
  5. String userId = context.getAuthenticatedAccount().getPrincipal().getName();

代码示例来源:origin: networknt/light-oauth2

  1. String clientSecret = Util.getUUID();
  2. client.setClientSecret(HashUtil.generateStrongPasswordHash(clientSecret));

相关文章