JAVA
文章平均质量分 74
陳約翰
True fan of C++
展开
-
JDK9 + Maven + Module 模块化多项目
1. 创建POM PARENT, 以及三個MODULE: address, person, dist。dist為最終輸出目錄,用到了maven-assembly-plugin目錄結構如圖:pom.xml:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-...原创 2018-05-14 17:57:16 · 4182 阅读 · 1 评论 -
HttpClient Post Example
@RequestMapping(value = "/", method = RequestMethod.GET)String get() { return "Hello from get";}@RequestMapping(value = "/post", method = RequestMethod.POST)String post(HttpServletRequest re...原创 2018-09-01 15:48:45 · 479 阅读 · 0 评论