#VAlue

JDBC告警系列(一)The server time zone value 'ÖÐ' is unrecognized or represents more than one time zone.

一、现象java.sql.SQLException:Theservertimezonevalue'Öйú±ê׼ʱ¼ä'isunrecognizedorrepresentsmorethanonetimezone.YoumustconfigureeithertheserverorJDBCdriver(viathese...
代码星球 ·2021-01-23

/usr/local/ssl/lib/libssl.a: error adding symbols: Bad value

一、背景编译第三方库A的时候提示依赖openssl库。二、编译openssl库去官网下载最新版本的openssl-1.0.2l.tar.gztar-zxvfopenssl-1.0.2l.tar.gzcdopenssl-1.0.2l./configmakemakeinstall完成编译,默认openssl的库安装在/us...
代码星球 ·2021-01-22

cxgrid footer summary value by a column

varAIndex:integer;AValue:variant;beginwithcxGrid1DBTableView1.DataController.SummarydobeginAIndex:=DefaultGroupSummaryItems.IndexOfItemLink(cxGrid1DBTableView1D...

每个节点里面都有nodeType nodeName nodeValue三个属性

1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<title>Title</title>6</head>7<body>8<divid="box"...

PHP empty()函数:Can't use method return value in write context

<?phpif(!empty(get_gpc('userId'))){$userId=get_gpc('userId');}else{$error="IDdoesn'texist";}报错:Fatalerror:Can'tusemethodreturnvalueinwritecontextin(linenumbe...
代码星球 ·2021-01-16

event.returnValue和return false的区别

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xh...

document.form.command.value

问题:在一个JSP页面中需要多个提交按钮,每个按钮点击后需要把同一个form提交到不同的页面进行处理解决:用JS。<html><head><title>一个表单、多个提交按钮、提交到多个不同页面</title></head><script>func...
代码星球 ·2021-01-09

js实现阻止默认事件preventDefault与returnValue

通过阻止默认事件,禁止鼠标右键的使用document.getElementById('dd').oncontextmenu=function(ev){  event=ev||window.event;  if(event.preventDefault){    event.preventDefault();  }els...

select获取到option的value和text方法

functiongetSelectval(id){varselId=document.getElementById(id);//获取select的idvarseleIndex=selId.selectedIndex;//获取被选项的引索值alert(selId.options[seleIndex].value);//获...

解决springboot项目中@Value注解参数值为null的问题

1、错误场景:springboot项目中在.properties文件(.yml)文件中配置了属性值,在Bean中使用@Value注解引入该属性,Bean的构造器中使用该属性进行初始化,此时有可能会出现属性值为null,造成初始化程序的错误2、错误原因:因为Bean的构造器调用是在@Value属性赋值之前进行的,所以造成...

Caused by: org.apache.ibatis.type.TypeException: The alias 'SiteVo' is already mapped to the value 'com.test.base.vo.manager.SiteVo'

错误详细信息:Causedby:org.apache.ibatis.type.TypeException:Thealias'SiteVo'isalreadymappedtothevalue'com.test.base.vo.manager.SiteVo'错误原因:关键在于配置文件指定别名范围过广,导致不同的包下出现相同...

Web app root system property already set to different value: 'webapp.root'

java.lang.IllegalStateException:Webapprootsystempropertyalreadysettodifferentvalue:'webapp.root'=[....mp1wtpwebappsworkreport]insteadof[.....wtpwebappsApprovalF...

myBatis抛出异常Result Maps collection already contains value ...

原因是Eclipse编译了一份在bin目录下,将bin目录或者WEB-INF下class目录清空即可或者Mavenclean一下项目...

Android填坑系列:Android JSONObject 中对key-value为null的特殊处理

在与服务端通过JSON格式进行交互过程中,不同版本的JSON库在对于key-value为null情况上的处理不同。Android自带的org.json对key-value都要求不能为null,对于必传的字段需要留意一下,尤其是留意value是否可能出现null的情形。否则导致服务端解析出现问题。此坑已被踩中,留下小记。...

mysql添加DATETIME类型字段导致Invalid default value错误的问题

执行sql如下:CREATETABLE`qcloud_sms_template`(`id`int(11)unsignedNOTNULLAUTO_INCREMENT,`ctime`datetimeNOTNULLDEFAULTCURRENT_TIMESTAMP,PRIMARYKEY(`id`),)ENGINE=InnoDB...
首页上一页...4142434445...下一页尾页