Here you can find the source of setbizSeq(String bizSeq)
public static void setbizSeq(String bizSeq)
//package com.java2s; //License from project: Apache License import org.slf4j.MDC; public class Main { public static void setbizSeq(String bizSeq) { MDC.clear();// www .j av a 2 s.c o m MDC.put("bizSeq", bizSeq); } }