用于将本地特定规则的请求转发到某个ip port代理 var proxy = "PROXY 127.0.0.1:xxxx; DIRECT;"; var rules = [ "||xxx.xxx.com", ]; /* * This file is part of Adblock Plus <http ...
分类:
其他好文 时间:
2020-07-10 00:43:50
阅读次数:
78
链接:https://leetcode-cn.com/problems/plus-one/ 代码 class Solution { public: vector<int> plusOne(vector<int>& digits) { int t = 1; for (int i = digits.si ...
分类:
其他好文 时间:
2020-07-08 21:27:49
阅读次数:
43
一、登录功能 1.1登录所涉及的功能主要包括拦截器,过滤器,用户在未登录的时候,访问页面会阻止访问的,如图所示: 实现这个功能的主要代码如下所示 1 //拦截器 2 public class LoginHandlerInterceptor implements HandlerInterceptor ...
分类:
编程语言 时间:
2020-07-08 01:24:05
阅读次数:
86
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1024 题目大意:给m 和n个数,将n个数分为m段,不交叉,求m段和的最大值。 Sample Input 1 3 1 2 3 2 6 -1 4 -2 3 -2 3 Sample Output 6 8 em ...
分类:
其他好文 时间:
2020-07-08 00:58:59
阅读次数:
82
yml的配置 mybatis-plus: mapper-locations: classpath*:com/gwq/movie/**/xml/*Mapper.xml global-config: id-type: 0 db-column-underline: false refresh-mapper ...
分类:
其他好文 时间:
2020-07-07 09:53:07
阅读次数:
105
一、条件构造器Wrapper Mybatis Plus为我们提供了如下的一些条件构造器,我们可以利用它们实现查询条件、删除条件、更新条件的构造。 条件构造器用于给如下的Mapper方法传参,通常情况下: updateWrapper用于给update方法传条件参数 queryWrapper用于给del ...
分类:
其他好文 时间:
2020-07-07 09:35:54
阅读次数:
60
list清单: 以后慢慢补吧,现在时间有点来不及,主要觉得没必要。 symbol 名称 作用 character 名称 作用 print() 打印 用于输出一些列字符串、数据、文本 # #号 (1)注释,用自然语言解释某段代码的功能 (2)在想要移除某段代码的时候禁用程序的一些功能 + plus,加 ...
分类:
其他好文 时间:
2020-07-06 18:14:15
阅读次数:
61
官网:https://mp.baomidou.com/ MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 1、加载依赖 <!--mybatisPlus --> <dependency> <groupId ...
分类:
编程语言 时间:
2020-07-04 15:21:34
阅读次数:
88
springboot 整合 MyBatis-Plus 一、添加相关依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.0.5</versi ...
分类:
编程语言 时间:
2020-07-01 20:46:53
阅读次数:
91