摘要: Servlet 2.3 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <d 阅读全文
posted @ 2019-03-21 19:15 江湖小小白 阅读(5118) 评论(0) 推荐(1)
摘要: 配置:https://vimhelp.org/options.txt.html & https://ruanyifeng.com/blog/2018/09/vimrc.html sudo vim /etc/vim/vimrc.local " cat /etc/vim/vimrc,https://ww 阅读全文
posted @ 2019-03-21 18:57 江湖小小白 阅读(1163) 评论(0) 推荐(0)
摘要: CentOS 安装最新版本 Git 查看默认 yum 源的 git版本 # 安装 yum install -y git # 查看版本 git version # git version 1.8.3.1 参看官网,CentOS 安装新版本有两种方式 一、编译方式安装 1.下载最新版本源码 https: 阅读全文
posted @ 2019-03-21 13:56 江湖小小白 阅读(51752) 评论(0) 推荐(3)
摘要: https://hadoop.apache.org/releases.html & https://dlcdn.apache.org/hadoop 准备工作 安装 SSHD sudo apt install --reinstall -y openssh-server sudo systemctl s 阅读全文
posted @ 2019-03-20 22:43 江湖小小白 阅读(1717) 评论(0) 推荐(1)
摘要: 可指定路径 import sun.misc.ProxyGenerator; import java.io.FileOutputStream; import java.io.IOException; import java.lang.reflect.InvocationHandler; import 阅读全文
posted @ 2019-03-19 12:01 江湖小小白 阅读(5347) 评论(0) 推荐(0)
摘要: P3C 【参考】枚举类名建议带上 Enum 后缀,枚举成员名称需要全大写,单词间用下划线隔开。 说明:枚举其实就是特殊的类,域成员均为常量,且构造方法被默认强制是私有。 正例:枚举名字为 ProcessStatusEnum 的成员名称:SUCCESS / UNKNOWN_REASON。 创建一个枚举 阅读全文
posted @ 2019-03-15 14:39 江湖小小白 阅读(348) 评论(0) 推荐(0)
摘要: 代理:能在目标方法执行前后或异常时做一些处理,并且可以多层代理,形成代理链 手动编码实现 interface Dao { void save(); } class DaoImpl implements Dao { @Override public void save() { System.out.p 阅读全文
posted @ 2019-03-14 20:01 江湖小小白 阅读(340) 评论(0) 推荐(0)
摘要: 准备工作 下载 Hadoop 源码 Source (当前最新 2.9.2) https://hadoop.apache.org/releases.html & https://mirrors.tuna.tsinghua.edu.cn/apache/hadoop 打开压缩包会看到 BUILDING.t 阅读全文
posted @ 2019-03-13 23:29 江湖小小白 阅读(969) 评论(0) 推荐(0)
摘要: Riot Client https://www.riotgames.com & https://playvalorant.com Account https://account.riotgames.com https://support-leagueoflegends.riotgames.com/h 阅读全文
posted @ 2019-03-13 11:02 江湖小小白 阅读(2168) 评论(0) 推荐(1)
摘要: 下载安装包 打开网址 https://store.rg-adguard.net 以 PackageFamilyName 方式搜索 Microsoft.WindowsStore_8wekyb3d8bbwe 根据系统选择对应的包,每一种都要下载 安装 在下载目录按住 shift 键,然后鼠标右键,打开 阅读全文
posted @ 2019-03-13 10:37 江湖小小白 阅读(84541) 评论(7) 推荐(2)
摘要: Office 2016 VOL Office Office 2016 Pro Plus 32 位专业增强版 文件名 SW_DVD5_Office_Professional_Plus_2016_W32_ChnSimp_MLF_X20-41351.ISO 文件大小 986441728 字节 MD5 49 阅读全文
posted @ 2019-03-13 00:14 江湖小小白 阅读(2084) 评论(0) 推荐(0)
摘要: 启动盘:https://github.com/ventoy/Ventoy & https://uqiba.com & http://jinhu.me & https://github.com/pbatard/rufus 不借助启动盘安装:https://bbs.pcbeta.com/viewthre 阅读全文
posted @ 2019-03-12 23:48 江湖小小白 阅读(2635) 评论(0) 推荐(0)
摘要: 配置好的demo:https://gitee.com/jhxxb/MySpringBoot/tree/master/ssm-platform/src/test/java/generator,包含 maven 模式启动和直接 Java 类启动 一、配置依赖 1.依赖信息 pom.xml <?xml v 阅读全文
posted @ 2019-03-12 14:43 江湖小小白 阅读(4137) 评论(0) 推荐(0)
摘要: 附上搭建好的 demo:https://gitee.com/jhxxb/MySpringBoot/tree/master/Spring-Base-Web/mvc-ssm-annotation Spring、Spring MVC、MyBatis 整合 一、依赖 <?xml version="1.0" 阅读全文
posted @ 2019-03-11 19:14 江湖小小白 阅读(1228) 评论(2) 推荐(0)
摘要: 情况: 1.使用 Tomcat 8 Maven 插件 2.使用 ServletContainerInitializer 模式配置 Spring 配置好后发现只会加载 spring-web 配置的 WebApplicationInitializer 的子类,自己配置的 WebApplicationIn 阅读全文
posted @ 2019-03-11 11:43 江湖小小白 阅读(3396) 评论(2) 推荐(0)