摘要:
方式一: 单文件==>下载 方式二: 双文件==>下载 阅读全文
摘要:
1.在linux上检查某个网页是否正在运行,可以访问:curl http://locoalhost:8080 2.wget 网址 --timeout=2 阅读全文
摘要:
Commons Collections增强了Java集合框架。 它提供了几个功能来简化收集处理。 它提供了许多新的接口,实现和实用程序。 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collection 阅读全文
摘要:
blur方法 失去光标的时候获取到input里面的内容 转载 阅读全文
摘要:
拉取远程分支到本地 方式一: git clone -b 远程分支名 仓库地址 从远程指定分支克隆代码git branch 查看本地分支 git checkout -b cap 创建本地cap分支 并切换 git add * git commit -m"测试提交" git push origin ca 阅读全文
摘要:
<build> <finalName>${jar.final.name}</finalName> <plugins> <!-- 打JAR包,不包含依赖文件;显式剔除配置文件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artif 阅读全文
摘要:
mvn install:install-file -DgroupId=com.kingstar.unicenter -DartifactId="artifactId的名字" -Dversion=1.0.2 -Dpackaging=jar -Dfile=路径.jar 阅读全文
摘要:
public enum StringShowType { /** * 标准文本框 */ STANDARD(0), /** * 密码框 */ PASSWORD(1), /** * 多行文本 */ TEXTAREA(2), /** * 富文本 */ RICHTEXT(3) ; private int c 阅读全文
摘要:
idea中的service存在 就是在controller中引入的时候会报错 无法引入报"Cannot find declaration to go to" 重启idea 刷新maven无用 最后发现是idea缓存问题 有个imi文件导致 解决办法 阅读全文
摘要:
public class OssManage { public static String ACCESS_KEY_ID = null; public static String ACCESS_KEY_SECRET = null; public static String ENDPOINT = nul 阅读全文