上一页 1 ··· 17 18 19 20 21
摘要: 转载: https://blog.csdn.net/yingxiake/article/details/51193319 因为服务器请求处理线程的总数是有限的,如果类似的请求多了,所有的处理线程处于阻塞的状态,那新的请求也就无法处理了,也就所谓影响了服务器的吞吐能力。要更加好地发挥服务器的全部性能, 阅读全文
posted @ 2018-07-18 15:32 brx_blog 阅读(6450) 评论(0) 推荐(0) 编辑
摘要: package com.brx.utils;import com.google.common.base.Preconditions;import com.google.common.collect.Lists;import com.google.common.collect.Maps;import 阅读全文
posted @ 2018-07-18 11:22 brx_blog 阅读(428) 评论(0) 推荐(0) 编辑
摘要: org.apache.maven.plugins maven-compiler-plugin 3.5.1 1.8 1.8 阅读全文
posted @ 2018-07-18 09:44 brx_blog 阅读(557) 评论(0) 推荐(0) 编辑
摘要: package com.mmall.util;import lombok.extern.slf4j.Slf4j;import org.apache.commons.lang3.StringUtils;import javax.servlet.http.HttpServletRequest;impor 阅读全文
posted @ 2018-07-17 15:06 brx_blog 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 【转载】当 MyBatis 将一个 Java 对象作为输入参数执行 INSERT 语句操作时,它会创建一个 PreparedStatement 对象,并且 使用 setXXX()方式对占位符设置相应的参数值。这里,XXX 可以是 Int,String,Date 等 Java 对象属性类型的任意一个。 阅读全文
posted @ 2018-07-13 16:52 brx_blog 阅读(235) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21