摘要: EL表达式: 基本用法:${表达式} 示例:${student.name} 作用域对象:EL表达式内置四种作用域对象 pageScope:从当前页面取值 requestScope:从当前请求中获取属性值 sessionScope:从当前会话中获取属性值 applicationScope:从当前应用获 阅读全文
posted @ 2021-04-13 22:34 景、 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1.字符匹配范围 A:精确匹配单个字符 x|y:允许出现的2个字符 [xyz]:字符集合,允许出现集合内任意单个字符 [a-z] [A-Z] [0-9]:字符范围 [^xyz] [^0-9]:集合内字符不允许出现 2.元字符 \d :匹配任意单个数字 \D :匹配\d规则之外的任意单个字符 \w : 阅读全文
posted @ 2021-03-30 20:39 景、 阅读(122) 评论(0) 推荐(0) 编辑
摘要: <form:radiobuttons path="isInsuredCasualty" class="input-xxlarge" items="${fns:getDictList('yes_no')}" itemLabel="label" itemValue="value" htmlEscape= 阅读全文
posted @ 2021-03-17 11:28 景、 阅读(983) 评论(0) 推荐(0) 编辑
摘要: @Scheduled 具体参数可以参考spring-context-5.1.6.RELEASE.jar下面的org.springframework.scheduling.annotation.Scheduled类 cron 设置时分秒等具体的定时。 // 每隔10分钟执行一次 @Scheduled( 阅读全文
posted @ 2021-03-16 15:44 景、 阅读(2763) 评论(0) 推荐(0) 编辑
摘要: favicon.ico图标是什么? 在浏览器的左上角: 在项目中设置时,需要在首页添加引用: <link rel="bookmark" type="image/x-icon" href="保存地址/favicon.ico" /> <link rel="shortcut icon" href="保存地 阅读全文
posted @ 2021-03-15 15:53 景、 阅读(2008) 评论(0) 推荐(0) 编辑
摘要: 命令安装redis:wget https://download.redis.io/releases/redis-6.0.10.tar.gz 出现如下错误To connect to download.redis.io insecurely, use ‘--no-check-certificate’.当 阅读全文
posted @ 2021-02-22 22:39 景、 阅读(146) 评论(0) 推荐(0) 编辑
摘要: //后台代码@RequestMapping(value="/fileDownMeth",produces = "application/octet-stream;charset=UTF-8") public ResponseEntity<byte[]> download(HttpServletReq 阅读全文
posted @ 2021-01-28 10:39 景、 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 1.maven引入 <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency> 或者导入jar import net 阅读全文
posted @ 2021-01-22 17:55 景、 阅读(445) 评论(0) 推荐(0) 编辑
摘要: markdown文件的阅读利器~~ docsify官网:https://docsify.js.org/#/ 1.先查看环境是否安装nodejs和npm #node -v #npm -v 如果没有安装,查看安装 https://www.runoob.com/nodejs/nodejs-install- 阅读全文
posted @ 2020-12-24 22:18 景、 阅读(2508) 评论(0) 推荐(0) 编辑
摘要: 1.查看gcc版本中包含哪些库。 strings /usr/lib64/libstdc++.so.6 | grep GLIBC GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIB 阅读全文
posted @ 2020-12-23 15:57 景、 阅读(1091) 评论(0) 推荐(0) 编辑