上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 前言 接到反馈说刚才好好的单体Docker容器无法访问了。浏览器访问超时并显示ERR_CONNECTION_RESET。 问题排查 首先想到的就是服务挂了,但是从docker ps -a来看,容器运行良好,且都对外开放了相应的端口。 1. 排查端口 宿主机使用 lo 网卡访问响应端口,看下端口连通性 阅读全文
posted @ 2020-06-11 08:45 JLCUI 阅读(4273) 评论(0) 推荐(0) 编辑
摘要: /** * 自定义List分页工具 * @author hanwl */ public class PageUtil { /** * 开始分页 * @param list * @param pageNum 页码 * @param pageSize 每页多少条数据 * @return */ publi 阅读全文
posted @ 2020-04-27 15:01 JLCUI 阅读(3349) 评论(0) 推荐(0) 编辑
摘要: <style> .ac { display: inline-block; width: 80px; word-break: keep-all; overflow: hidden; text-overflow: ellipsis; } .ac:hover { word-break:normal; wi 阅读全文
posted @ 2020-01-14 13:42 JLCUI 阅读(2398) 评论(0) 推荐(0) 编辑
摘要: package com.infosec.sso.component.externalauthandsyn; import java.util.Map; import javax.annotation.PostConstruct; import org.springframework.beans.fa 阅读全文
posted @ 2019-12-06 11:37 JLCUI 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-02 17:09 JLCUI 阅读(294) 评论(0) 推荐(0) 编辑
摘要: $("#nihao").on("click","tr",function(){ var id = $(this).children("td:eq(0)").find("input").val(); alert(id); }); 阅读全文
posted @ 2018-10-08 13:38 JLCUI 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 更多 ... 阅读全文
posted @ 2018-09-28 14:48 JLCUI 阅读(634) 评论(0) 推荐(0) 编辑
摘要: package cn.com.chinautrust.idm.repo.mybatis.provider; import org.springframework.util.StringUtils; import cn.com.chinautrust.idm.bo.user.AdminVO; public class AdminVOProvider { public sta... 阅读全文
posted @ 2018-09-07 16:34 JLCUI 阅读(88) 评论(0) 推荐(0) 编辑
摘要: package cn.com.chinautrust.idm.repo.mybatis.mapper; import java.util.List; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Insert; import org.apache.ibatis.annotat... 阅读全文
posted @ 2018-09-07 16:33 JLCUI 阅读(650) 评论(0) 推荐(0) 编辑
摘要: package net.joystart.common.util; import java.util.Date; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** * 缓存类. */ public class CacheManager { private static Map CACHE_D... 阅读全文
posted @ 2018-04-26 10:26 JLCUI 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页