码迷,mamicode.com
首页 >  
搜索关键字:plus    ( 2974个结果
Pac代理文件
用于将本地特定规则的请求转发到某个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
leetcode-----66. 加一
链接: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
一个简单的springboot+mybatis-plus+thymeleaf的学生管理系统
一、登录功能 1.1登录所涉及的功能主要包括拦截器,过滤器,用户在未登录的时候,访问页面会阻止访问的,如图所示: 实现这个功能的主要代码如下所示 1 //拦截器 2 public class LoginHandlerInterceptor implements HandlerInterceptor ...
分类:编程语言   时间:2020-07-08 01:24:05    阅读次数:86
HDU-1024Max Sum Plus Plus(最大m段子序列和-DP)
题目链接: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
mybatis plus的逆向工程及基本使用
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
小书MybatisPlus第2篇-条件构造器的应用及总结
一、条件构造器Wrapper Mybatis Plus为我们提供了如下的一些条件构造器,我们可以利用它们实现查询条件、删除条件、更新条件的构造。 条件构造器用于给如下的Mapper方法传参,通常情况下: updateWrapper用于给update方法传条件参数 queryWrapper用于给del ...
分类:其他好文   时间:2020-07-07 09:35:54    阅读次数:60
练习22--到目前为止你学了什么
list清单: 以后慢慢补吧,现在时间有点来不及,主要觉得没必要。 symbol 名称 作用 character 名称 作用 print() 打印 用于输出一些列字符串、数据、文本 # #号 (1)注释,用自然语言解释某段代码的功能 (2)在想要移除某段代码的时候禁用程序的一些功能 + plus,加 ...
分类:其他好文   时间:2020-07-06 18:14:15    阅读次数:61
MybatisPlus的简单使用(与SpringMVC的整合)
官网:https://mp.baomidou.com/ MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 1、加载依赖 <!--mybatisPlus --> <dependency> <groupId ...
分类:编程语言   时间:2020-07-04 15:21:34    阅读次数:88
思创漫游3.0 Plus 之三层漫游
你的网络有三层漫游吗?
分类:其他好文   时间:2020-07-02 11:56:46    阅读次数:52
Springboot整合Mybatis-Plus
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
2974条   上一页 1 ... 11 12 13 14 15 ... 298 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!