11 2023 档案
摘要:1、requestParam参数校验 描述:通常用于get请求或者请求参数比较少的情形。 校验生效的前提:必须在Controller类上标注@Validated注解,在方法或者参数前添加无效! 如果校验失败,会抛出ConstraintViolationException异常。 @GetMapping
阅读全文
摘要:span是inline元素(内联元素),所以使用width并不起作用, 但是设置为block元素,又会影响其它元素的布局, CSS2.1引入的inine-block可以完美解决此问题 { width: 100px; display:inline-block; }
阅读全文
摘要:CellStyle cs = wb.createCellStyle(); //设置字体 Font font = wb.createFont(); font.setColor(IndexedColors.BLACK.getIndex()); font.setFontHeightInPoints((sh
阅读全文