Easter79 Easter79
3年前
tomcat 自动进入工程目录及动态发布关闭
tomcat/conf/server.xml<Hostname"localhost"appBase"webapps" unpackWARs"true"autoDeploy"true"<!增加以下内容<Contextpath"/"docBase"appName"reloadable"fa
Jacquelyn38 Jacquelyn38
3年前
前端面试题集锦(奥利给!!!)
基础知识点与高频考题JavaScript基础console.log(1 < 2 < 3);console.log(3  2  1);// 写出代码执行结果,并解释为什么// 答案与解析true false对于运算符、<,一般的计算从左向右第一个题:1 < 2 等于 true, 然后true < 3,true  1 ,因此结果是t
Easter79 Easter79
3年前
SpringMVC当中的 @Transactional(readOnly = true) 的作用
readOnlytrue表明所注解的方法或类只是读取数据。readOnlyfalse表明所注解的方法或类是增加,删除,修改数据。如果设置为true,spring会对其优化,可以用来提高性能。readOnly为true时读取的数据如果缓存中存在就从缓存中读取这是没有问题的readOnly为false时读取的数据就不能从缓存
Stella981 Stella981
3年前
Android 显示网页图片
原WebView web;String url;web.getSettings().setUseWideViewPort(true);web.getSettings().setLoadWithOverviewMode(true);web.getSettings().setDisplayZoomControl
Stella981 Stella981
3年前
Ajax跨域请求COOKIE无法带上的解决办法
$.ajax({type:"get",dataType:"json",url:"http://sso.test.com/userinfo",crossDomain:true,xhrFields:{withCredentials:true
Stella981 Stella981
3年前
Rust Pattern
简单的写法allow(dead_code)fnoutput(filename:&str,bytes:&u8)Result<(){letmutfpOpenOptions::new().truncate(true).create(true).write(true).ope
Stella981 Stella981
3年前
PHP 隐式转换(自动装换) 和 bc 精度函数
<?phpecho1true;//true1echo'<hr/';echo1false;//false0echo'<hr/';echo1.1false;echo'<hr/';echo1.1tru
Wesley13 Wesley13
3年前
MongDB日常操作
记录下日常的MongoDB操作命令://新建库useiceportal\_image//新建collectiondb.createCollection("xxxacc",{autoIndexId:true});db.createCollection("xxximg",{autoIndexId:true});//
Easter79 Easter79
3年前
Tomcat 域名指向工程配置
server.xml<Hostname"www.lcs.com"appBase"webapps"unpackWARs"true"autoDeploy"true"xmlValidation"false"xmlNamespaceAware"false"     <Contextpath""docBase"D:\
Stella981 Stella981
3年前
Golang学习
//将布尔值转换为字符串true或falsefuncFormatBool(bbool)string//将字符串转换为布尔值//它接受真值:1,t,T,TRUE,true,True//它接受假值:0,f,F,FALSE,false,False//其它任何值都返回一个错误。funcParseBool(st