09 2020 档案
摘要:HttpServletRequest获取POST请求参数3种方法 request.getInputStream() private static String getPostData(HttpServletRequest request) { StringBuffer data = new Stri
阅读全文
摘要:one: *ngIf, *ngFor, interpolation{{}}, property binding[], event binding() two: var:global variable let:block scope const:final unchangeable
阅读全文
摘要:select a.id,ExtractValue(a.name, '//root//name') as name from table t
阅读全文
摘要:类中添加@Component标签才会被初始化 1.使用value标签 @Value("${url}") private String url; 2.使用Environment @Autowired private Environment env; 3.静态方法中获取 private static S
阅读全文