对于MAVEN项目,Eclipse会自动把项目src\main\java\目录下的配置文件(.xml)和资源文件(.properties)搬运到target目录下,而intellij idea默认是不会帮我们做这件事的。 解决办法: 在pom.xml文件中加入以下配置: <build> <resou ...
分类:
其他好文 时间:
2020-04-21 18:09:48
阅读次数:
544
1.Ceph与volumes结合目标:实现CephRBD和kubernetesvolumes集成。1.1准备工作1、创建pool和用户[root@node-1~]#cephosdpoolcreatekubernetes882、创建认证用户[root@node-1~]#cephauthget-or-createclient.kubernetesmon‘profilerbd‘osd‘profilerb
分类:
Web程序 时间:
2020-04-21 13:23:16
阅读次数:
91
<build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </i ...
分类:
其他好文 时间:
2020-04-20 18:48:48
阅读次数:
98
进入dubbo的github托管页面https://github.com/apache/dubbo,下拉找到dubbo admin的项目地址。 点击进入后下载zip文件到本地并解压。修改dubbo-admin-develop\dubbo-admin-server\src\main\resources ...
分类:
其他好文 时间:
2020-04-18 13:51:21
阅读次数:
63
springboot 配置文件加载位置 springboot启动会扫描以下位置的application.properties/yml文件作为Springboot的默认配置文件 1.file:./config/ file指的是项目文件夹 2.file:./ 3.classpath:/config/ c ...
分类:
编程语言 时间:
2020-04-17 00:35:02
阅读次数:
73
目的:运行Atlas并使用Azkaban执行操作任务 环境:Centos 6 内存大小:12G 启动下面的任务后还剩内存将近5G 问题: 当mysql_to_hdfs_db和其他job同时运行时集群很容易就会报错 Cannot create GC thread. Out of system reso ...
分类:
其他好文 时间:
2020-04-16 22:28:47
阅读次数:
86
在 JDK 7 之前,各种资源操作需要在finally里面手动关闭 1 static String readFirstLineFromFileWithFinallyBlock(String path) throws IOException { 3 BufferedReader br = new Bu ...
分类:
其他好文 时间:
2020-04-16 15:33:20
阅读次数:
69
springboot或者spring项目经常会引用其它项目,把其它项目的Jar包加进来,因为每个项目的包路径不一样,mapper.xml的路径也不一样,这个时候就需要引入多个路径。 项目A,mapper.xml 路径在 resources/mappers/push 下面 项目B,mapper.xml ...
分类:
移动开发 时间:
2020-04-16 10:27:01
阅读次数:
201
前言 项目在开发一段时间后难免会出现些无引用的资源,AndroidStudio 提供了查找这些无引用的配置属性、xml文件、位图。 查找无用资源操作步骤 1.在菜单栏找到 Analyz > Run Inspection by Name 点击 2.输入 Unused resources 查找的无效资源 ...
分类:
移动开发 时间:
2020-04-15 19:55:24
阅读次数:
106
import win32gui import win32ui import win32con name = "test.txt - Notepad" hwnd = win32gui.FindWindow(None, name) left, top, right, bot = win32gui.Get ...
分类:
编程语言 时间:
2020-04-14 12:33:20
阅读次数:
112