摘要: web上的server都叫web server,但是大家分工也有不同的。 nginx常用做静态内容服务和代理服务器(不是你FQ那个代理),直面外来请求转发给后面的应用服务(tomcat,django什么的),tomcat更多用来做做一个应用容器,让java web app跑在里面的东西,对应同级别的 阅读全文
posted @ 2018-08-18 04:41 iRabbit 阅读(6016) 评论(0) 推荐(1) 编辑
摘要: We use git commands in the day to day work, below are the most common git commands I could think of. git branch <branchName> git checkout <branchName> 阅读全文
posted @ 2018-05-19 00:51 iRabbit 阅读(108) 评论(0) 推荐(0) 编辑
摘要: An array of array of objects (Object[][]) where the first dimension's size is the number of times the test method will be invoked and the second dimen... 阅读全文
posted @ 2016-01-09 07:30 iRabbit 阅读(166) 评论(0) 推荐(0) 编辑
摘要: throwsE1,E2,E3只是告诉程序这个方法可能会抛出这些个异常,方法的调用者可能要处理这些异常。而这些异常E1,E2,E3可能是该函数体产生的。而throw是明确之处这个地方要抛出这个异常。void doA() throws Exception1, Exception3 { try { ... 阅读全文
posted @ 2016-01-05 03:36 iRabbit 阅读(409) 评论(0) 推荐(0) 编辑