摘要:
前提 不设定resources → appplication-{}.properties 默认属性 @TestConfiguration public class Initializer implements ApplicationContextInitializer<ConfigurableApp 阅读全文
摘要:
spring.jpa.properties.hibernate.types.print.banner=false 阅读全文
摘要:
gson 提供方法 TypeToken<?> getParameterized(Type rawType, Type... typeArguments) 进行泛型转化: final Class<? super T> rawType; 基类信息 final Type type; 底层反射实例 publ 阅读全文
摘要:
自定义环境变量文件存放目录 /usr/local/etc/profile.d: java_evn.sh export JAVA_HOME_7=/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home export JAVA_HOM 阅读全文
摘要:
maven <dependency> <groupId>org.apache.opennlp</groupId> <artifactId>opennlp-tools</artifactId> <version>1.9.4</version> </dependency> model 文件 (http: 阅读全文
摘要:
docker build 命令 docker-compose build \ --build-arg http_proxy=http://host.docker.internal:[代理端口] \ --build-arg https_proxy=http://host.docker.internal 阅读全文
摘要:
链接: https://cs.nyu.edu/~grishman/jet/guide/PennPOS.html 1. CC 并列连词 2. CD 基数 3. DT限定词 4. EX 存在那里 5. FW 外来词 6. IN 介词或从属连词 7. JJ 形容词 8. JJR 形容词,比较级 9. JJ 阅读全文
摘要:
$(cd $(dirname "$0"); pwd) dir=$(cd $(dirname "$0"); pwd) echo $dir 阅读全文
摘要:
open -a <app-path> <file-path> open -a /Applications/Sublime\ Text.app config.json 阅读全文
摘要:
python2 python -m SimpleHTTPServer {port} python3 python3 -m http.server {port} 直接访问 http://127.0.0.1:{port}, 便可查看http server启动所在目录 阅读全文