摘要: @RequestMapping("m3") public String m3(@RequestParam MultiValueMap<String, String> p){ Set<String> keys = p.keySet(); for (String key : keys) { List<S 阅读全文
posted @ 2022-02-10 22:15 谢远栋 阅读(24) 评论(0) 推荐(0)
摘要: public String m2(@RequestParam Map<String, String> p){ Set<String> strings = p.keySet(); for (String string : strings) { System.out.println("key = " + 阅读全文
posted @ 2022-02-10 21:45 谢远栋 阅读(43) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-02-10 18:25 谢远栋 阅读(27) 评论(0) 推荐(0)
摘要: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.1.4.RELEASE</version> </dependency> 阅读全文
posted @ 2022-02-10 18:19 谢远栋 阅读(22) 评论(0) 推荐(0)
摘要: <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scop 阅读全文
posted @ 2022-02-10 17:36 谢远栋 阅读(29) 评论(0) 推荐(0)