摘要:
查看所有分支 查看本地分支 切换分支 demo "代码回滚:Reset、Checkout、Revert的选择" 阅读全文
摘要:
IBaseEnum.java FuncEnum.java StringToBaseEnumConverterFactory.java 注册自定义的ConverterFactory MyWebAppConfigurer.java 测试 EnumModel.java 同时测试@RequestBody和@ 阅读全文
摘要:
my.properties 对应的Java POJO 测试 输出 阅读全文
摘要:
"Graphite 系列 2:Carbon 和 Whisper" "GRAPHITE SERIES 1: PROVISION HARDWARE" "GRAPHITE SERIES 2: CARBON & WHISPER" "GRAPHITE SERIES 3: WHISPER STORAGE SCH 阅读全文
摘要:
描述 使用@Value映射properties文件属性到Java字段 重点 使用@PropertySource 注解指定 .properties文件位置; 使用@Value进行注入; my.properties Java类 阅读全文
摘要:
描述 将 .properties中的内容映射到java对象中; 主要步骤 1. 添加 @Component 注解; 2. 使用 @PropertySource 注解指定配置文件位置; 3. 使用 @ConfigurationProperties 注解,设置相关属性; my.properties Au 阅读全文
摘要:
开发环境 Java 1.6; 需要修改的配置 指定java和tomcat版本 完整的 pom.xml 其他说明 创建一个可运行的Jar To create an executable jar we need to add the spring boot maven plugin to our pom 阅读全文
摘要:
``` !/bin/sh rootdir= rm rf ${rootdir}/centos KERNEL_DIR=${rootdir}/kernel ROOTFS_DIR=${rootdir}/rootfs if [ d ${KERNEL_DIR} ]; then echo "remove kern 阅读全文
摘要:
在后台执行 磁盘修复 使用nohup和& 让进程在后台执行; 可见,nohup 的使用是十分方便的,只需在要处理的命令前加上 nohup 即可,标准输出和标准错误缺省会被重定向到 nohup.out 文件中。一般我们可在结尾加上"&"来将命令同时放入后台运行,也可用" filename 2 &1"来 阅读全文