最新发布第51页
Java中合并两个list的三种方式-Ddmit

Java中合并两个list的三种方式

这里介绍三种合并两个list的方式: package org.4spaces; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import org.apache.commons.collections.List...
ddmit的头像-DdmitDdmit6年前
076050
IntelliJ IDEA 2018.3.5激活教程-Ddmit

IntelliJ IDEA 2018.3.5激活教程

所有版本激活方法汇总参考:IntelliJ IDEA 最新版激活/注册码系列教程(无需修改hosts文件); 此教程适用环境: ideaIU-2018.3.5.win; IntelliJ IDEA 2018.3.5激活步骤如下: 下载IDEA 去官网ht...
ddmit的头像-DdmitDdmit6年前
031580
Free Gallery Sites-Ddmit

Free Gallery Sites

Below are the gallery websites that offer free commercial high-resolution image downloads. 1.Unsplash Site URL: https://unsplash.com/ 2.Pexels Site URL: https://www.pexels.com/ 3.G...
ddmit的头像-DdmitDdmit6年前
023831
ORACLE中赋予一个用户查询另一个用户所有表的权限-Ddmit

ORACLE中赋予一个用户查询另一个用户所有表的权限

ORACLE中赋予一个用户查询另一个用户所有表的权限,例如,赋予iarp_ww用户查询ods_sgaj用户所有表的权限,具体操作: 1.使用管理员账号登录 登录后执行下面的sql: select 'GRANT SELECT ON ods_...
ddmit的头像-DdmitDdmit6年前
021650
Java根据list下标拆分子list的四种方式-Ddmit

Java根据list下标拆分子list的四种方式

根据已有的list,想根据下标截取一个子list有下列几种方式: package org.4spaces; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.stream.Colle...
ddmit的头像-DdmitDdmit6年前
025590
nginx启用ngx_http_referer_module模块配置图片防盗链-Ddmit

nginx启用ngx_http_referer_module模块配置图片防盗链

辛辛苦苦制作的博文配置被盗用,不仅浪费自己的心血,还浪费服务器的流量和带宽,着实气人,找到一个nginx图片防盗链的配置方法。 环境: nginx 1.14.0 ; CentOS 7.5 x64; 配置: 我的nginx安...
ddmit的头像-DdmitDdmit6年前
021080
IntelliJ IDEA中Mapper接口通过@Autowired注入报错的正确解决方式-Ddmit

IntelliJ IDEA中Mapper接口通过@Autowired注入报错的正确解决方式

环境 ideaIU-2018.3.4.win; 错误提示: Could not autowire. No beans of 'JwDsBaseinfoCaseMapper' type found. less... (Ctrl+F1) Inspection info:Checks autowiring problems in a bean cl...
ddmit的头像-DdmitDdmit6年前
025350
已解决:SpringBoot使用Swagger2提示Unable to infer base url错误-Ddmit

已解决:SpringBoot使用Swagger2提示Unable to infer base url错误

环境 版本: swagger2 2.9.2; 错误信息 访问swagger首页 http://localhost:8080/swagger-ui.html,错误信息如下: Unable to infer base url. This is common when using dynamic servlet regi...
lombok配置文件说明-Ddmit

lombok配置文件说明

lombok.config文件配置项说明: # 默认: false,lombok默认对boolean类型字段生成的get方法使用is前缀, 通过此配置则使用get前缀 lombok.getter.noIsPrefix=true # 默认: false,默认的set方法...
同一台电脑配置/关联/使用两个或多个Gitlab账号-Ddmit

同一台电脑配置/关联/使用两个或多个Gitlab账号

使用gitlab账号时间久了,难免会申请多个gitlab账号,有时我们会在同一台电脑上管理两个或者以上的gitlab账号的仓库,这时候可怎么办呢? 假设你的两个gitlab账号分别为aitlp和weiyanzixun 在一...