今天来试试mybatis新的写法,0配置文件 代码可以这么写 package com.cnsuning.com.mapper; public interface UserMapper { @Select("SELECT * FROM users") @Results({ @Result(proper ...
分类:
编程语言 时间:
2021-03-01 13:06:16
阅读次数:
0
虚树 [SDOI2011]消耗战 板题,基本上是对着网上的板子敲的 #include <bits/stdc++.h> using namespace std; inline int read() { int out = 0; register char cc = getchar(); while ( ...
分类:
其他好文 时间:
2021-03-01 12:59:52
阅读次数:
0
解决git clone慢 原命令:git clone https://github.com/xxx 替换为:git clone https://github.com.cnpmjs.org/xxx 解决npm install慢 换成阿里镜像源:npm config set registry https ...
分类:
其他好文 时间:
2021-02-25 12:13:34
阅读次数:
0
1、二维列表的声明 [['pygis'],['gis']] 2、CSV格式的本质,是用,作为分隔符。 3、for循环 for …… in …… 例: a=0 for i in range(100): a+=a print(a) 4、引用库的方法为import 5、将句子分割词语的方法 import ...
分类:
编程语言 时间:
2021-02-20 11:45:10
阅读次数:
0
ArcGIS 帮助 10.2 摘要 UpdateCursor 函数创建一个用于更新或删除指定要素类、shapefile 和表中的行的游标。该游标将数据锁定保留至脚本完成或更新游标对象被删除时。 讨论 以迭代方式更新游标的方式有两种:for 循环或者 while 循环(通过游标的 next 方法返回下 ...
分类:
其他好文 时间:
2021-02-09 11:44:54
阅读次数:
0
FROM registry.cn-hangzhou.aliyuncs.com/xxxxxx/dotnet/aspnet:5.0 WORKDIR /app COPY ./xxxxxx . ENV ASPNETCORE_ENVIRONMENT QA EXPOSE 30015 ENV TZ=Asia/Sh ...
分类:
其他好文 时间:
2021-01-28 12:08:06
阅读次数:
0
原文:https://blog.csdn.net/tianlong1569/article/details/108398149 HttpSecurity全名为org.springframework.security.config.annotation.web.builders.HttpSecurit ...
分类:
其他好文 时间:
2021-01-27 14:07:13
阅读次数:
0
创世区块配置文件genesis.json的格式解读 中文网站上关于genesis 的解析大多数都来自于这个Gist:Ethereum private network configuration guide. (github.com),但实际上genesis 中的配置项还有一些其他内容。 首先,gen ...
分类:
Web程序 时间:
2021-01-27 13:14:36
阅读次数:
0
成功创建出第一个窗口 虽然无法对窗口进行操作 代码 int CALLBACK WinMain( _In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPSTR lpCmdLine, _In_ int nShowCmd) { ...
分类:
其他好文 时间:
2021-01-25 11:10:05
阅读次数:
0
Windows 操作系统本身是不开源的,但是微软内核工程师 Axel Rietschin 发表了一篇博客,带大家一窥了Windows 10 内核的魅力。 Axel 介绍,Windows 10 与 Windows 8.x、7、Vista、XP、2000 和 NT 的代码库是相同的,其中每一代都在之前的 ...