tomcat负载均衡
12月 4, 2014 |
Nix.Huang
先决条件: 1)确保正确的安装了apache httpd服务器 2)确保安装了mod_jk模块,在类unix的 […more]
tomcat log的默认配置文件为conf\logging.properties,该文件的结构为 1)han […more]
我们在基于spring + spring mvc架构的项目的web.xml中看到如下的经典配置:(定义了两个配 […more]
MySQL在5.6版本中包含了一个强大的特性——performance-schema,合理的使用这个数据库中的 […more]
首先确定当前用户拥有这些系统数据库的相应权限!!!! mysql workbench默认没有显示informa […more]
昨天我发表了一篇名为《从字节码角度看String的连接操作》的博文,我提到String的”+”操作是非线程安全 […more]
假设有如下的示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
public class TestString { private static final String welcome = "welcome"; private static final String to = " to"; private static final String javacoder = " javacoder"; private static final String cn = ".cn"; /** * 使用'+'链式操作 */ public String test1() { String s1 = welcome + to + javacoder + cn; return s1; } /** * 使用非链式操作 */ public String test2() { String s1 = welcome + to; s1 += javacoder; s1 += cn; return s1; } /** * 对传入的参数进程连接操作 */ public String test3(String welcome, String to, String javacoder, String cn) { String s1 = welcome + to + javacoder + cn; return s1; } /** * 完全不用链式操作 */ public String test4() { StringBuffer sb = new StringBuffer(); sb.append(welcome); sb.append(to); sb.append(javacoder); sb.append(cn); return sb.toString(); } /** * 完全使用链式操作 */ public String test5() { return new StringBuffer().append(welcome).append(to).append(javacoder) .append(cn).toString(); } } |
使用“javap -v […more]
今天读到CSDN的一篇名为《不要在一门技术上吊死》的极客文章,我不太同意博主的观点,冰冻三尺非一日之寒,千招会 […more]
公司最近接了一个微软的外包项目,公司为了减少盗版软件的使用,让我们开发人员尽量的使用linux操作系统,由于我 […more]
String类是java Coder使用得最多的一个工具类吧,常见的考点有: 1)常量字符串是定义在常量区,值 […more]