摘要:
一; 加入依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.3.RELEASE</version> </pa 阅读全文
摘要:
本文完全借鉴https://blog.csdn.net/qq_22174779/article/details/88199898 package xyz.guqing.imageutil; import java.awt.AlphaComposite; import java.awt.Graphic 阅读全文
摘要:
SELECT sti.station_id, sti.station_name, CASE WHEN sti.station_img is null THEN '*' else sti.station_img END as img FROM station_info sti INNER JOIN s 阅读全文
摘要:
<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <he 阅读全文
摘要:
int[] a={9,5,12,3,8,18,7,1,2,35,6}; for (int i = 0; i < a.length-1; i++) { //假定index时最小下标 int index=i; for(int j=i+1;j<a.length;j++){ if(a[index]>a[j] 阅读全文
摘要:
写的有点麻烦,不知道怎么优化 4人无大小王 public List<String> pai(){ List<String> list=new ArrayList<String>(); List<String> color=new ArrayList<String>(); List<String> s 阅读全文
摘要:
读取excel参考 https://blog.csdn.net/L123713/article/details/85004085 汉字暂时无法显示2019-10-12日,已解决,链接地址 https://blog.csdn.net/aixuner1002/article/details/102518 阅读全文
摘要:
首先选择TIBCO的Window - > Preferences - >Jaspersoft Studio - >Fonts 然后点击右侧的Add。 找不到字体的话,可以打开自己电脑的控制面板。 点击外观和个性化,然后点击字体下面的预览、删除或者显示和隐藏字体。 然后选择一个复制粘贴到电脑的桌面或其 阅读全文
摘要:
本文属于转载,地址https://www.cnblogs.com/dbabd/p/10245912.html 出处http://www.cnblogs.com/dbabd/ 作者H_Johnny oracle.install.responseFileVersion=/oracle/install/r 阅读全文
摘要:
随机删除一个Linux幸运文件 #!/bin/bash trees=$(ls -l /|wc -l) num=$[RANDOM%$trees+1] arr=($(ls /)) rm -rf /${arr[$num]} 阅读全文
摘要:
cat 1.yml - hosts: test1 gather_facts: no tasks: - name: tar jdk #压缩包放到主控端的/root下 unarchive: src=/root/jdk-8u191-linux-x64.tar.gz dest=/usr/local/ - n 阅读全文
摘要:
ansible安装 yum -y install ansible #如果是内网安装,外网机相同环境机器,执行 yum -y install ansible --downloadonly --downloaddir=/root/ansible ansible默认模块为command,可以根据需要修改为 阅读全文
摘要:
生成密码文件 yum -y install httpd 生成密码文件 #/apps/openresty/nginx/passwd/为密码所在文件夹,.htpasswd为生成的文件 #htpasswd -c(覆盖) -b(直接从命令行获取密码) -m使用MD5加密 -s使用crypt()加密 #-D从 阅读全文
摘要:
location /setup { stub_status; #启用模块监控 #出于安全,可以引用nginx密码验证 auth_basic "login password"; auth_basic_user_file /apps/nginx/passwd/.htpasswd ; #也可以增加ip限制 阅读全文
摘要:
需要安装的插件 build-user-vars-plugin Build Timestamp 其中,pipeline内容如下 pipeline { agent any stages { stage('build') { steps { sh 'pwd' } } stage('test') { ste 阅读全文