11 2019 档案
摘要:Tomcat在启动是提示: INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs.
阅读全文
摘要:http { #WebSocket代理配置 map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { location /app { proxy_set_header Host $host; proxy_set_header X-real-ip $remote_addr; proxy_set_head
阅读全文
摘要:1:autodeploy_tomcat_app.sh 2:将test.war上传至/home/test/apache-tomcat-8.5.34目录,然后执行以下脚本进行部署
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Doc
阅读全文
摘要:在磁盘目录下有几十个txt文件,里面存储着XML格式的数据,每个文件在2-3M左右,现在需要将以上文件解析出来保存到mysql数据库,总数据量大概在30万条左右。 (1)首先通过stream并发解析TXT文件,然后将解析的结果按照LOAD DATA的标准全部保存到一个文件中; (2)步骤(1)执行完
阅读全文
摘要:1:load_data_test.sh 备注:$?如果为1表示脚本执行出错,为0表示脚本执行成功。 2:java代码 3:测试
阅读全文