码迷,mamicode.com
首页 >  
搜索关键字:allowed or required    ( 4937个结果
Spring事务
一、事务认识 事务Transaction就是一件事情,要做就要做完,如果中途出现问题就要恢复成最初状态。事务具备ACID四种特性,ACID是Atomic(原子性)、Consistency(一致性)、Isolation(隔离性)和Durability(持久性)的英文缩写: 原子性:事务最基本的操作单元 ...
分类:编程语言   时间:2020-09-17 16:26:07    阅读次数:24
Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MySQL server
远程连接mysql报错,如下如所示: 1、感觉是服务器3306端口没有开放导致,查看: 已经开放了3306端口号,排除端口的问题。 2、后来查看官网得知:root用户拒绝远程连接导致 我们用root用户本地登录mysql,查看user表 use mysql; select * from user w ...
分类:数据库   时间:2020-09-10 22:51:55    阅读次数:56
初级前端面试常考题总结(持续记录中........)
1.H5和CSS3新特性 #H5新特性 语义化标签:header、footer、section、nav、article 增强型表单:input的type,如email、range、number、search、url、date等 新增表单属性:placeholder、required、min和max ...
分类:其他好文   时间:2020-09-02 16:44:05    阅读次数:55
Makefile的介绍与使用(二)
Makefile的介绍与使用(一)中,我简单总结了一下关于子目录下的Makefile的一些运用,而这次的Makefile的介绍与使用(二)中,就对Makefil顶层目录进行一个剖析,简单分析一下Makefile的构造。 就拿最近做的hello目录下的Makefile为示例 include $(TOP ...
分类:其他好文   时间:2020-08-24 16:40:34    阅读次数:54
表单中填写不完整拒绝提交
一、使用submit提交表单 使用html5的标签 //在必填表单项中添加required 二、使用点击事件提交表单 注意:必须将表单属性改为button //1、input形式 <input id="registerbtn" type="button" value="注册"/> //2、butto ...
分类:其他好文   时间:2020-08-03 18:38:35    阅读次数:86
AbstractRoutingDataSource 实现动态数据源切换原理简单分析
AbstractRoutingDataSource 实现动态数据源切换原理简单分析 写在前面,项目中用到了动态数据源切换,记录一下其运行机制。 代码展示 下面列出一些关键代码,后续分析会用到 数据配置 @Configuration @PropertySource({ "classpath:jdbc. ...
分类:其他好文   时间:2020-08-01 12:45:42    阅读次数:104
Caused by: java.lang.NumberFormatException: For input string: "{current}"
org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'lo ...
分类:编程语言   时间:2020-07-30 01:54:09    阅读次数:131
【odoo】遗留问题--无法重载write
class Team(models.Model): _name = 'icbc.team' _description = '专业组' uid = fields.Integer('序号', required=1) name = fields.Char('专业组', required=1) team_l ...
分类:其他好文   时间:2020-07-29 10:35:14    阅读次数:81
按需取余
CF 1374A. Required Remainder You are given three integers x,y and n. Your task is to find the maximum integer k such that 0≤k≤n that kmodx=y, where mo ...
分类:其他好文   时间:2020-07-29 10:29:20    阅读次数:63
583. Delete Operation for Two Strings
Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one cha ...
分类:其他好文   时间:2020-07-28 14:04:15    阅读次数:77
4937条   上一页 1 ... 9 10 11 12 13 ... 494 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!