摘要: package com.project.mobile.util;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;impo 阅读全文
posted @ 2019-01-10 13:58 小洺 阅读(147) 评论(0) 推荐(0)
摘要: 1.下载安装包 2.解压,进入目录 make cd src make install PREFIX=/usr/local/redis 创建etc文件夹 把redis.config 移动至etc下、 后台启动 将daemonize的值改为yes 设置密码 (1)首先进入redis,如果没有开启redi 阅读全文
posted @ 2018-12-12 10:48 小洺 阅读(127) 评论(0) 推荐(0)
摘要: 可能出现错误在配置信息./configure --prefix=/usr/local/nginx 的时,出现错误:/configure: error: the HTTP rewrite module requires the PCRE library.解决方法:安装pcreyum -y instal 阅读全文
posted @ 2018-12-11 10:15 小洺 阅读(1031) 评论(0) 推荐(0)
摘要: Ubuntu/Debian安装Nginx和upstream-fair 注意:首先可以通过/usr/local/nginx/sbin/nginx -V查看nginx的编译参数,确定是否已经安装该模块 在ubuntu或debian上安装nginx,可以直接采用使用指令安装apt-get install 阅读全文
posted @ 2018-12-11 10:14 小洺 阅读(1124) 评论(0) 推荐(0)
摘要: package com.project.mobile.util; import java.util.regex.Pattern;/** * 账户相关属性验证工具 * */public class AccountValidatorUtil { /** * 正则表达式:验证用户名 */ public s 阅读全文
posted @ 2018-11-29 10:02 小洺 阅读(235) 评论(0) 推荐(0)
摘要: 原链接 https://blog.csdn.net/eson_15/article/details/81043834 spring学习连接 https://blog.csdn.net/qq_37939251/article/details/83926749 1. Spring Boot 并不是用来替 阅读全文
posted @ 2018-11-28 10:33 小洺 阅读(255) 评论(0) 推荐(0)
摘要: package datiqi.com.dtq.datiqi_teacher.autils; import android.util.Log; /** * 数字 转换 */public class DigitalConversion { private static String nums[] = { 阅读全文
posted @ 2018-11-22 14:49 小洺 阅读(6109) 评论(2) 推荐(0)
摘要: java jdk安装 上传 解压 省略 。。 配置环境变量 #vi /etc/profile在最后面加入export JAVA_HOME=/usr/java/jdk1.7.0_67export CLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/ 阅读全文
posted @ 2018-11-22 13:20 小洺 阅读(309) 评论(0) 推荐(0)
摘要: 1默认轮询 upstream backserver { server 192.168.0.14; server 192.168.0.15; } 2权重分配 weight 30%,70% upstream backserver { server 192.168.0.14 weight=3; serve 阅读全文
posted @ 2018-11-21 17:33 小洺 阅读(459) 评论(0) 推荐(0)
摘要: mapper.xml <!--批量添加20条随堂作业--> <insert id="insertBatchExerciseTopic" parameterType="com.admin.model.ExerciseTopic"> INSERT INTO code_dtq_exercise_topic 阅读全文
posted @ 2018-11-21 15:48 小洺 阅读(132) 评论(0) 推荐(0)