该文被密码保护。 阅读全文
摘要:
import javax.xml.bind.Marshaller; import java.lang.reflect.Field; //监听生成xml文件过程 public class MarshallerListener extends Marshaller.Listener { public s 阅读全文
摘要:
查看集群状态http://127.0.0.1:9200/_cluster/health返回: {"cluster_name":"elasticsearch","status":"green","timed_out":false,"number_of_nodes":3,"number_of_data_ 阅读全文
摘要:
0、安装JDK 1、下载tomcat8.5 官网:https://tomcat.apache.org/download-80.cgi 下载地址:https://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-8/v8.5.54/bin/apache 阅读全文
摘要:
ps -ef|grep php|grep -v grep|cut -c 9-15|xargs kill -9 管道符"|"用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。下面说说用管道符联接起来的 几个命令:"ps - ef"是linux 里查看所有进程的命令。这时检索出的进程将作 阅读全文
摘要:
在服务器上,为了退出终端,程序依然能够运行,需要设置程序在后台运行。 关键的命令:nohup *基本用法:进入要运行的py文件目录前 nohup python -u test.py > test.log 2>&1 & *含义解释:nohup 不挂起的意思python test.py python运行 阅读全文
摘要:
import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.security.MessageDigest; import java.security.NoSuchAlgorithmExcep 阅读全文
摘要:
在application.properties写入下面代码 test.boolean=truetest.string=abctest.integer=123test.long=123test.float=1.2345678123456test.double=1.2345678123456test.a 阅读全文
摘要:
import org.jdom.CDATA;import org.jdom.Document;import org.jdom.Element;import org.jdom.output.Format;import org.jdom.output.XMLOutputter; public stati 阅读全文