码迷,mamicode.com
首页 >  
搜索关键字:global mapper    ( 11701个结果
Codeforces Global Round 14 A. Phoenix and Gold
一、算法分析 当时比赛做的时候有点急躁,就首先考虑了三种情况,分别是砝码总重恰好为x,大于x和小于x.显然只有总重恰好为x的时候才会必然爆炸,否则都可以通过一定的方式进行规避。然后考虑如何安排顺序进行规避,如果总重小于x则显然随便安排都不会炸。但是如果总重大于x则就要考虑怎么安排了,思路如下: 先排 ...
分类:其他好文   时间:2021-05-23 23:40:03    阅读次数:0
python 解包、递归
解包: d = {"username":"admin","password":"123456"}print(d.items())# [('username', 'admin'), ('password', '123456')]for k,v in d.items(): print(k,v)递归 #函 ...
分类:编程语言   时间:2021-05-04 15:37:45    阅读次数:0
21-5-01_innodb内幕
5.6 B+树索引的使用 5.6.1 不同应用中B+树索引的使用 OLTP(on-line transaction processing)翻译为联机事务处理, OLAP(On-Line Analytical Processing)翻译为联机分析处理,从字面上来看OLTP是做事务处理,OLAP是做分析 ...
分类:数据库   时间:2021-05-04 15:27:37    阅读次数:0
gitblit 记录
gitblit 非常简单易用的开源免费的git服务端,能满足一般的git server的要求,非常好。 安装非常简单:http://gitblit.github.io/gitblit/ 下载windows或linux版本,默认启动或简单改一下配置文件的端口就能用,不需要数据库。 记录一下遇到的小问题 ...
分类:其他好文   时间:2021-05-03 12:04:32    阅读次数:0
JAVA框架(SSM):MyBatisPlus
MyBatisPlus 目的:对mybatis进行增强,不进行改变 简单Demo编写 创建数据库并插入资料 创建springboot工程 引入相关依赖和npm 安装lombox等插件 设置application.properties 编写代码 新建entity实体 新建mapper,继承BaseMa ...
分类:编程语言   时间:2021-04-30 12:18:44    阅读次数:0
mybatis 自动生成mapper文件
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http:// ...
分类:移动开发   时间:2021-04-28 11:48:02    阅读次数:0
keepalived+lvs
配置lvs-dr环境 master配置文件 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_conne ...
分类:其他好文   时间:2021-04-27 14:56:45    阅读次数:0
keepalived-master-slave
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:其他好文   时间:2021-04-27 14:42:00    阅读次数:0
Mybatis捕获异常
DataAccessException DataAccessException是Mybatis封装的异常,继承了RuntimeException这个类。 步骤 Mapper抛出DataAccessException异常 ServiceImpl抛出DataAccessException异常 Contr ...
分类:其他好文   时间:2021-04-27 14:30:41    阅读次数:0
git-开发-问题
学习无他法,唯有持之以恒 Git解决中文乱码问题git status 乱码解决方法:git config --global core.quotepath false?git commit 乱码解决方法:git config --global i18n.commitencoding utf-8?git ...
分类:其他好文   时间:2021-04-26 13:50:31    阅读次数:0
11701条   上一页 1 ... 6 7 8 9 10 ... 1171 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!