摘要: 1 打开WebStorm2018,创建新项目 2 选择vue.js项目类型,填写项目位置,下一步 3 vue-cli插件项目构建中。 4填写项目名称 5 项目描述 6作者 7 8 9使用ESLint 10 11 12 13 14 15进入项目,执行cnpm i 16启动 17浏览器访问 项目结构:h 阅读全文
posted @ 2019-07-16 15:20 ENU 阅读(720) 评论(0) 推荐(0) 编辑
摘要: Failure to find xxx.jar in http://maven-nexus.xxx.com/repository/maven-public/ was cached in the local repository, resolution will not be reattempted 阅读全文
posted @ 2019-06-24 13:54 ENU 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 索引刷新// Refresh your indices client.admin().indices().prepareRefresh().get(); https://blog.csdn.net/u010325193/article/details/88635299 https://blog.csdn.net/HuoqilinHeiqiji/article/details/88414834 ... 阅读全文
posted @ 2019-06-14 17:16 ENU 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 指定 编码格式 <context:property-placeholder location="classpath:*.properties" file-encoding="UTF-8"/> 阅读全文
posted @ 2019-01-18 14:11 ENU 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 最近下载了tomcat9解压启动,日志乱码了,如下 乱码无非就编码和解压格式不一致导致,我们系统和tomcat日志输出编码格式不一致 修改 conf/logging.properties下 java.util.logging.ConsoleHandler.encoding = UTF-8 为 jav 阅读全文
posted @ 2019-01-12 00:09 ENU 阅读(2556) 评论(1) 推荐(1) 编辑
摘要: 链接: 1.http://www.mybatis.org/mybatis-3/zh/index.html 2.http://www.mybatis.org/spring/zh/index.html 3.http://baomidou.oschina.io/mybatis-plus-doc/#/ 阅读全文
posted @ 2018-11-24 23:18 ENU 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 常见的操作可以归类如下。 Intermediate: map (mapToInt, flatMap 等)、 filter、 distinct、 sorted、 peek、 limit、 skip、 parallel、 sequential、 unordered Terminal: forEach、 阅读全文
posted @ 2018-09-21 14:47 ENU 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.安装supervisor yum install python-setuptools easy_install supervisor 2.配置Supervisor mkdir /etc/supervisorecho_supervisord_conf > /etc/supervisor/super 阅读全文
posted @ 2018-08-27 22:54 ENU 阅读(956) 评论(0) 推荐(0) 编辑
摘要: 1.在pom.xml中引入mybatis自动生成代码插件 2. generatorConfig.xml的内容如下: 然后刷新下就会出现 双击生成代码 阅读全文
posted @ 2018-08-15 15:53 ENU 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 我知道的实现定时任务功能的方式目前有以下几种方式一:使用java.util下的Timer和TimerTask,单线程。入门demo: Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void r 阅读全文
posted @ 2018-08-15 11:11 ENU 阅读(180) 评论(0) 推荐(0) 编辑