码迷,mamicode.com
首页 >  
搜索关键字:highlight    ( 8728个结果
Springboot 1.5.7整合Kafka-client
在一次项目中,因甲方需要使用kafka消息队列推送数据,所以需要接入kafka,并且kafka的版本是2.11。但是我们项目使用的是Springboot 1.5.7的版本,对应的springboot.kafka.starter有冲突,所以就接入了kafka-client。springboot接入ka ...
分类:编程语言   时间:2020-10-18 10:00:08    阅读次数:18
移动端base.css
### 移动端 基于flex布局 的默认样式 rest css ; ``` *,::before,::after { padding: 0; margin: 0; outline: none; -webkit-tap-highlight-color: transparent; } /* 所有元素的盒... ...
分类:移动开发   时间:2020-10-12 20:37:17    阅读次数:32
PAT A1008 Elevator Go语言题解
Problem: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors ...
分类:编程语言   时间:2020-10-05 22:34:28    阅读次数:52
Java 8的CompletableFuture在方法内使用不当,导致局部变量出现线程安全问题
最近在项目使用Java8 的CompletableFuture执行一些异步多线程任务,一时疏忽,导致ArrayList出现线程安全问题 就算在方法内使用局部变量,但使用异步多线程执行任务,还是会出现线程安全问题 以下是错误、正确使用的示例方法: package test; import java.t ...
分类:编程语言   时间:2020-09-18 04:08:44    阅读次数:47
position属性sticky
在目标区域以内,它的行为就像 position:relative; 而当页面滚动超出目标区域时,它的表现就像 position:fixed;,它会固定在目标位置。 元素定位表现为在跨越特定阈值前为相对定位,之后为固定定位。 这个特定阈值指的是 top, right, bottom 或 left 之一 ...
分类:其他好文   时间:2020-09-18 03:15:31    阅读次数:37
Win32 sdk 下树形控件响应鼠标单击与双击,获得选中项的名称
//窗口过程函数INT_PTR CALLBACK myWin::myWinDlgProc(HWND dlgHwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_COMMAND: { OnCommand(wPa ...
分类:Windows程序   时间:2020-09-18 02:25:01    阅读次数:59
页面中如何实现背景图100%铺满全屏
.box{ width:100%; background: url(../img/bg.png) no-repeat; background-size: 100% 100%; position: absolute; z-index: -1; top: 0; left: 0; right: 0; } ...
分类:其他好文   时间:2020-09-18 01:18:19    阅读次数:31
Sql 递归
with temp(id,name,curlevel,hasChild) as ( --初始查询 select id,name,1 curlevel,1 hasChild from tabName pc with(nolock) where Disabled = 0 and ParentId is ...
分类:数据库   时间:2020-09-18 01:13:23    阅读次数:31
can not be used when making a PIE object; recompile with -fPIC
问题: roroot@data-server /m/o/tengine [2]# ll 总用量 420K -rw-rw-r-- 1 root root 889 9月 5 2019 AUTHORS.te drwxrwxr-x 6 root root 4.0K 9月 5 2019 auto/ -rw-r ...
分类:其他好文   时间:2020-09-18 01:07:32    阅读次数:86
BUUCTF_WEB_20200913
#WEB-WarmUp 1.拿到题目F12,发现source.php 在地址后缀加上sourse.php查看php源代码http://2995d695-d04a-469d-874a-abe960aa7080.node3.buuoj.cn/source.php <?php highlight_file ...
分类:Web程序   时间:2020-09-18 01:00:55    阅读次数:47
8728条   上一页 1 ... 18 19 20 21 22 ... 873 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!