上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: html { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%) 阅读全文
posted @ 2020-06-05 16:12 秋水秋色 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 转载于 腾讯技术工程 在这篇文章中,Netflix 的性能分析工程师团队会给你展示在最开始的 60 秒内,如何在命令行模式下使用已有的 Linux 标准工具进行性能优化检测。在 60 秒内只需要通过运行下面的 10 个命令就可以对系统资源使用和运行进程有一个很高程度的了解。寻找错误信息和饱和度指标, 阅读全文
posted @ 2020-06-05 10:25 秋水秋色 阅读(375) 评论(0) 推荐(0) 编辑
摘要: ;with cte_tot as( select col_name, sum((CAST(col_name AS numeric(18, 2)))) total, convert(varchar(10),month(time_col))+'月' date from table_name with(n 阅读全文
posted @ 2020-05-27 16:34 秋水秋色 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: Spring是一个开源框架,框架的主要优势之一就是其分层架构,分层架构允许选择使用其中一个组件,同时为J2EE应用程序开发提供集成的框架。Spring由7个定义良好的模块组成,Spring模块构建在核心容器之上,核心容器定义了创建、配置和管理bean的方式 核心容器 提供spring框架的基本功能。 阅读全文
posted @ 2020-05-21 10:53 秋水秋色 阅读(1620) 评论(0) 推荐(0) 编辑
摘要: WITH t AS ( SELECT datename(weekday, getdate() - t1.number) AS weeknum , substring(convert(varchar, getdate() - t1.number, 120), 1, 11) AS daynum FROM 阅读全文
posted @ 2020-05-21 10:12 秋水秋色 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 转载于 https://www.cnblogs.com/xiaoping1993/p/9717649.html 注意可能在idea工具执行java命令提示找不到类,返回类的最上层包路径 然后再执行java xxx(编译后的class文件),其他操作,参考上述链接 第二种解决方式 IDEA--> ma 阅读全文
posted @ 2019-12-24 16:27 秋水秋色 阅读(1259) 评论(0) 推荐(0) 编辑
摘要: 赋予脚本执行权限 chmod +x xxx.sh chmod 777 xxx.sh 加入定时任务 crontab -e */1 * * * * shell_path 每分钟执行 阅读全文
posted @ 2019-09-25 23:05 秋水秋色 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 找到tomcat文件夹下的conf/server.xml,在connector节点下新增URIEncoding="utf-8"参数 阅读全文
posted @ 2019-09-24 10:20 秋水秋色 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 主要参考 https://reactnative.cn/docs/getting-started.html react-native中文网 IOS版 1、Node v10以上、Watchman 和 React Native 命令行工具以及 Xcode 先安装brew工具,这样便于后面安装,第一次安装 阅读全文
posted @ 2019-08-26 21:53 秋水秋色 阅读(2424) 评论(0) 推荐(0) 编辑
摘要: 判断是不是为空1、th:if="${xxx} != null" th:if="${xxx != null}"是不是为空字符串 1、th:if="${#strings.isEmpty(xxx)}"不存在设置默认值th:text="${xxx} ?: 'defaultVal'"截取 ${#strings 阅读全文
posted @ 2019-08-23 16:22 秋水秋色 阅读(711) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页