com.networknt.utility.Util.getUUID()方法的使用及代码示例

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

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

Util.getUUID介绍

[英]Generate UUID across the entire app and it is used for correlationId.
[中]在整个应用程序中生成UUID,并用于correlationId。

代码示例

代码示例来源: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-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-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-oauth2

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

代码示例来源: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));

相关文章