摘要:
今天做了个简单的反向代理,确一直失败,后来看了相关文档后,捋清思路,记录下来,方便日后使用。 一. 安装nginx: 1. sudo apt-get update 2. sudo apt-get install nginx 二. 配置反向代理: 1. vi /etc/nginx/nginx.conf 阅读全文
摘要:
springboot多模块项目,需要在tomcat服务器下运行,首先要把项目打成war包,修改web模块下的pom文件,将打包形式改完war包(默认是jar包) 1. 修改web-api工程的pom文件 2. 修改root工程的pom文件, 移除springboot自带的tomcat 以上都弄好后, 阅读全文
摘要:
@echo off echo **********************************************echo.echo 欢迎使用joymo.cc一键安装jdkecho.echo ********************************************** ech 阅读全文
摘要:
context.setVariable('response.header.Content-Type', 'application/csv; charset=utf-8'); context.setVariable('response.header.Content-Disposition','atta 阅读全文
摘要:
context.setVariable('response.header.Content-Type', 'application/xml; charset=utf-8'); context.setVariable('response.content',JSON.stringify(response) 阅读全文
摘要:
body:请求体中的数据 query:请求的参数,URL后面以?的形式,例:user?id params:请求的参数,URL后面以/的形式,例:user/:id 阅读全文
摘要:
MongoDB现在不再开源了,并且已经从Homebrew中移除 #43770,所以用brew install mongodb安装会报错。 新的安装方式可以参考github主页给的提示:https://github.com/mongodb/homebrew-brew 1. 设定:brew tap mo 阅读全文
摘要:
var parent$ = window.parent.layui.jquery; var request = parent$("#requestname").val(station.name); 阅读全文