摘要: <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.mybatis</grou 阅读全文
posted @ 2021-09-24 17:28 埼玉howfree 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 1.设置匹配规则 private RequestMatcher matcherHtml = new AntPathRequestMatcher("/**", "GET"); 2.把ServletRequest转化成HttpServletRequest,强转即可 3.调用matches方法进行匹配 m 阅读全文
posted @ 2020-04-08 09:39 埼玉howfree 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: <if test="parentId != null and parentId != ''"> AND bc.`parent_id` = #{parentId, jdbcType=VARCHAR} </if> <if test="deleteStatus != null"> AND bc.`dele 阅读全文
posted @ 2020-04-07 21:41 埼玉howfree 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1.实现Filter接口 public class TestFilter extends GenericFilterBean { @Override public void doFilter(ServletRequest req, ServletResponse res, FilterChain c 阅读全文
posted @ 2020-04-07 20:32 埼玉howfree 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 不bb,直接上代码 public class URLcodeUtil { private static final Logger logger = LoggerFactory.getLogger(URLcodeUtil.class); /** * 字符串编码成URLcode编码 */ public 阅读全文
posted @ 2020-04-07 14:42 埼玉howfree 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 作用:用于在序列化是加入开发者的代码(这句话网上抄的),常用于对象或属性上,前提是对象实现了Serializable接口 使用方法 1.作用于对象 @JsonSerialize(include = ''),include里面包含了序列化的范围和作用的规则,例如@JsonSerialize(inclu 阅读全文
posted @ 2020-04-07 11:53 埼玉howfree 阅读(3485) 评论(0) 推荐(0) 编辑
摘要: 1.下载二维码生成器的谷歌插件 2.启动项目,点击插件 3.用手机浏览器的扫对应的二维码就可以访问本地启动的项目了 阅读全文
posted @ 2020-04-07 11:19 埼玉howfree 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 1.找到打印机所在电脑上打印机所属的共享文件夹。 2.在自己本地访问共享文件夹,找到对应的打印机,右键点击连接,安装打印机驱动(傻瓜操作)。 3.在word(举例)中找到对应的打印机,打印 示例 1. 2. 3. 阅读全文
posted @ 2020-04-07 10:53 埼玉howfree 阅读(854) 评论(0) 推荐(0) 编辑
摘要: 不传值后台也不会报错,但是如果@requestparam( required = false)的括号中指定了基本数据类型,例如(@requestparam(value = 'num' required = false) int num) 这个时候如果不传值是会报错的,因为不传值就赋null,但是in 阅读全文
posted @ 2020-04-06 17:34 埼玉howfree 阅读(29410) 评论(5) 推荐(1) 编辑