上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 修改mysql配置文件my.cnf(windows为my.ini) mac brew方式在/usr/local/etc/my.cnf my.cnf一般在etc/mysql/my.cnf位置。找到后请在以下三部分里添加如下内容: [client]default-character-set = utf8 阅读全文
posted @ 2018-08-01 17:31 Binz 阅读(970) 评论(0) 推荐(0) 编辑
摘要: 1、先定义一个枚举基类BaseEnum public interface BaseEnum { default String getCode() { return this.name(); } String getDisplayName(); static <E extends Enum<E>> B 阅读全文
posted @ 2018-06-13 17:41 Binz 阅读(9627) 评论(1) 推荐(1) 编辑
摘要: #1.安装git apt-get install git; #2生成公钥私钥文件 2.配置git账户: git config --global user.name "yourname" #配置用户名,将yourname和下面的邮箱替#换成你的 git config --global user.email "youremail@xmail.com" #配置用户邮箱 #3.生成ssh密钥 ssh... 阅读全文
posted @ 2018-03-29 09:21 Binz 阅读(992) 评论(0) 推荐(0) 编辑
摘要: // 第二步 //还需要自己在一个过滤器中写入这个代码,不然还是会浏览器抛出跨域异常 //如果是不是正式环境 if(!AppWebConf.isPro()) { response.setHeader("Access-Control-Allow-Origin", "*"); } 阅读全文
posted @ 2018-03-26 17:11 Binz 阅读(680) 评论(0) 推荐(0) 编辑
摘要: #更新源 apt-get update #安装python和pip apt-get install python-gevent python pip #安装ss pip install shadowsocks #添加配置文件 vi /etc/shadowsocks.json 输入以下内容 { "server":"0.0.0.0", "local_address": "127.0.0... 阅读全文
posted @ 2018-03-16 15:31 Binz 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 需要把网页标签中的双引号替换为 &quot; 或者 \\\" 例如 <div id=\\\"container\\\" style=\\\"width: 600px;margin: 0 auto\\\"></div> or <div id=&quot;container&quot; style=&q 阅读全文
posted @ 2018-01-26 17:12 Binz 阅读(351) 评论(0) 推荐(0) 编辑
摘要: maven引用 springxml配置 自定义配置类 ClassUtil 枚举定义 输出结果 阅读全文
posted @ 2017-12-28 10:17 Binz 阅读(4384) 评论(0) 推荐(0) 编辑
摘要: 使用Maven打包依赖项,启动时从本地jar中读取dubbo.xsd 最近项目用到dubbo,打包启动时报错 Failed to read schema document from http://code.alibabatech.com/schema/dubbo/dubbo.xsd 原因: 打包时没 阅读全文
posted @ 2017-12-21 15:47 Binz 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 只构建其中一个模块,先切换到项目跟目录,然后 pingjuan-common 修改成自己的对应的模块名称 构建依赖于common的模块 mvn install -pl pingjuan-common -am -amd构建pingjuan-common依赖的模块 mvn install -pl pin 阅读全文
posted @ 2017-12-21 15:24 Binz 阅读(152) 评论(0) 推荐(0) 编辑
摘要: * 元注解@Target,@Retention,@Documented,@Inherited * * @Target 表示该注解用于什么地方,可能的 ElemenetType 参数包括: * ElemenetType.CONSTRUCTOR 构造器声明 * ElemenetType.FIELD 域声 阅读全文
posted @ 2017-12-14 17:10 Binz 阅读(506) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页