This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jd.market.servicemanagement.token; | |
import java.lang.reflect.Method; | |
import java.util.Map; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import com.alibaba.dubbo.common.extension.Activate; | |
import com.alibaba.dubbo.rpc.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.uxin.feerate.util; | |
import com.google.common.base.Charsets; | |
import com.google.common.collect.Maps; | |
import com.google.common.collect.Sets; | |
import com.google.common.io.Files; | |
import io.netty.buffer.ByteBuf; | |
import io.netty.buffer.Unpooled; | |
import lombok.extern.slf4j.Slf4j; | |
import org.apache.commons.lang3.StringUtils; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RandomStringUtils.random(16, "1234567890qwertyuioplkjhgfdsazxcvbnm") | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.uxin.starclock.manage.impl; | |
import com.alibaba.fastjson.JSON; | |
import com.alibaba.fastjson.JSONObject; | |
import com.google.common.cache.Cache; | |
import com.google.common.cache.CacheBuilder; | |
import com.google.common.cache.CacheLoader; | |
import com.uxin.starclock.common.Constant; | |
import com.uxin.starclock.common.exception.BaseException; | |
import com.uxin.starclock.dto.IncallringDto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location = / { | |
if ($http_user_agent ~* "(Android|iPhone|iPod|Symbian|BlackBerry|Windows Phone|Mobile|J2ME)") { | |
rewrite ^ http://m.uxin.com permanent; | |
} | |
#htpasswd密码生成可用在线工具http://tool.oschina.net/htpasswd,加密方式选Crypt | |
auth_basic_user_file /data/soft/nginx/conf/htpasswd; | |
auth_basic "please input passwd, or contact YANGL"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.cd $NGINX_HOME,执行./sbin/nginx -V 查看安装参数; | |
2.得到安装参数后,添加nginx-sticky-module模块重新编译nginx, | |
./configure "之前的参数" --add-module=/nginx-sticky-module下载所在目录/nginx-sticky-module | |
make && make install | |
3.在upsteam中添加如下: | |
sticky name=srv_id expires=1h domain=uxin.com path=/; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 1.将如下内容加入pom.xml --> | |
<javasimon.version>3.5.0</javasimon.version> | |
<sirona.version>0.2-incubating</sirona.version> | |
<!-- Monitor begin --> | |
<!-- javasimon --> | |
<!-- Core JAR is absolutely necessary to use Simons (Stopwatch, etc.) --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.alibaba.rocketmq.common; | |
import java.util.concurrent.ThreadFactory; | |
import java.util.concurrent.atomic.AtomicInteger; | |
/** | |
* 带前缀命名的线程工厂 | |
* | |
* @author YAGNLiiN<[email protected]> | |
* @since 2013-05-23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jd.registry.failover; | |
import java.net.InetAddress; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.List; | |
import java.util.concurrent.*; | |
import com.jd.registry.Registry; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jd.market.servicemanagement.token.collect; | |
import java.io.File; | |
import java.util.Calendar; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import com.google.common.base.Strings; | |
import com.google.common.io.Files; |
OlderNewer