码迷,mamicode.com
首页 > 2019年01月30日 > 全部分享
使用maven的mybatis-generator代码生成器插件生成实体类、mapper配置文件和mapper接口(使用idea)
接着之前创建的ssmMaven项目 一: 在pom文件中加入mybatis-generator插件 注意:plugins标签不要写在pluginManagement标签里,或者plugin标签不要写在pluginManagement标签里的plugins标签里 应该像我这样:另起一个plugins标 ...
分类:移动开发   时间:2019-01-30 14:23:58    阅读次数:289
ArcGIS自定义工具箱-字段值部分替换
ArcGIS自定义工具箱-字段值部分替换 联系方式:谢老师,135-4855-4328,xiexiaokui#qq.com 目的:替换某个字段中的字符串 用例:湖南省长沙市=>湖南/长沙;临湘县=》临湘市 使用方法: 结果: 联系方式:谢老师,135-4855-4328,xiexiaokui#qq.... ...
分类:其他好文   时间:2019-01-30 14:23:45    阅读次数:899
Django之ModelForm组件
Django之ModelForm组件: ...
分类:其他好文   时间:2019-01-30 14:23:36    阅读次数:120
Merge Two Sorted Lists - LeetCode
[toc] 题目链接 " Merge Two Sorted Lists LeetCode" 注意点 两个链表长度可能不一致 解法 解法一:先比较两个链表长度一致的部分,多余的部分直接加进答案链表即可。时间复杂度为O(n) 小结 通常链表开头的第一个结点不存放数据,或者是不用来存放数据仅仅是作为一个向 ...
分类:其他好文   时间:2019-01-30 14:23:26    阅读次数:114
About the test in development
Unit test: Specify and test one point of the contract of single method of a class. This should have a very narrow and well defined scope. Complex depe ...
分类:其他好文   时间:2019-01-30 14:23:15    阅读次数:106
elasticsearch6.6.0安装配置及elasticsearch-head插件安装
一、最小化安装centos7.6 cat /etc/redhat-release 二、配置网络,可以上外网 三、安装常用命令工具,修改系统时区,校对系统时间,关闭selinux,关闭firewalld,修改主机名,修改系统文件描述符,内存锁限制及vm.max_map_count 数量(否则启动ela ...
分类:其他好文   时间:2019-01-30 14:22:57    阅读次数:216
003---生成器 & 迭代器
生成器 & 迭代器 列表生成式 现在有个需求,列表[1, 2, 3, 4, 5, 6, 7, 8, 9],将列表里的每个值加1。 二逼青年版 普通青年版 文艺版(lambda + map 搭配使用) 装逼青年版 这种写法就是列表生成式 习题:利用列表生成式一行代码实现9 9乘法表 生成器 通过列表生 ...
分类:其他好文   时间:2019-01-30 14:22:49    阅读次数:116
about unit test
Use unify unit test framework CPPUnit 1.12.1/Visual stdio Unit is a class or a function Test per major component Test by developer Set up clean enviro ...
分类:其他好文   时间:2019-01-30 14:22:33    阅读次数:122
关于 web.config impersonate 帐号模拟
1、模拟 IIS 验证的帐户或用户 若要在收到 ASP.NET 应用程序中每个页的每个请求时模拟 Microsoft Internet 信息服务 (IIS) 身份验证用户,必须在此应用程序的 Web.config 文件中包含 <identity> 标记,并将 impersonate 属性设置为 tr ...
分类:Web程序   时间:2019-01-30 14:22:25    阅读次数:192
16进制的字符串转化为utf-8格式的字符串
/** * 16进制的字符串转化为utf-8格式的字符串 * @param s * @return */ public static String toStringHex(String s) { byte[] baKeyword = new byte[s.length() / 2]; for (in... ...
分类:其他好文   时间:2019-01-30 14:22:15    阅读次数:147
自动登录火狐邮箱发送携带附件的邮件
#encoding=utf-8fromseleniumimportwebdriverimportunittest,time,tracebackfromselenium.webdriver.support.uiimportWebDriverWaitfromselenium.webdriver.common.byimportByfromselenium.webdriver.supportimporte
分类:其他好文   时间:2019-01-30 14:22:05    阅读次数:159
typescript基础类型
布尔值 Boolean 数字 Number 字符串 String 模版字符串 template js let name:string= ; let age:number=37; let sentence:string= ; js let sentence:string="Hello,my name ...
分类:其他好文   时间:2019-01-30 14:21:49    阅读次数:137
asp.net 跨域请求
微软官方文档 https://docs.microsoft.com/zh-cn/aspnet/core/security/cors?view=aspnetcore-2.2 ...
分类:Web程序   时间:2019-01-30 14:21:38    阅读次数:164
网址的构成
一般来说我们访问一个远程的东东,依靠的就是网址。网址的构成是固定的,http://域名/项目名/包结构/.../文件名。其中,没有备案的域名,就是ip构成的。这里说的ip,指的是ipv4的地址,即由4个三位数字构成的地址,ipv6暂时不说。但是,ip地址也是分好多类的,比如网络ip地址,局域网ip地 ...
分类:其他好文   时间:2019-01-30 14:21:14    阅读次数:150
手机端页面开发调试
一、PC和手机处于同一局域网下 手机上安装wifi魔盒,使用里面的工具看是否可以跟电脑ping通,能ping通说明在一个网络里。 注:如果手机和电脑明明在同一个局域网内并都可以正常上网,可是ping不同,可能因为交换机上做了端口隔离,还有种可能是交换机上禁用了PING功能。 二、搭建本地服务器 在开 ...
分类:移动开发   时间:2019-01-30 14:20:47    阅读次数:154
tomcat9 gzip
我认为apr模式比较屌所以 压缩类型,基本就文本这样吧.图片什么的算了,不合适 ...
分类:其他好文   时间:2019-01-30 14:20:31    阅读次数:142
python之logging模块
参考学习链接:https://www.cnblogs.com/testdjt/p/7834856.html 1、Python使用logging模块来记录日志,引入模块:import logging 2、日志一共有这几种级别(从低到高):DEBUG < INFO < WARNING < ERROR < ...
分类:编程语言   时间:2019-01-30 14:20:21    阅读次数:176
1096条   上一页 1 ... 34 35 36 37 38 39 40 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!