- 浏览: 7039 次
- 性别:
- 来自: 广州
最新评论
文章列表
在[mysqld]节点下新增或修改如下两行
skip-name-resolve
#忽略主机名的方式访问
lower_case_table_names=1
#忽略数据库表名大小写
转自:http://blog.csdn.net/xubo578/article/details/6572355
禁止弹出:
Preferences-〉 Run/Debug-〉Console里边
取消勾选 Show when program writes to standard out(当console中有值时弹出)前的选项
和 Show when program writes to standard error(当console中有错误时弹出) 前的选项
使用protobuf与传统的stream作比较
1.协议模型:
package tutorial;
option java_package = "com.example.tutorial";
option java_outer_classname = "RoleTest";
message Role {
optional int64 id = 1;
optional string name = 2;
optional string email = 3;
}
即此协议包括id name email三个字段。
2.wr ...