“资源添加到Web应用程序[]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓存的最大空间” 解决办法: 在 /conf/context.xml 的 前添加以下内容: <Resources cachingAllowed="true" cacheMaxSize="100000" /> ...
分类:
其他好文 时间:
2021-06-28 20:36:55
阅读次数:
0
JavaScript库,是一个封装好的集合(方法和函数)。简单说就是一个js文件,里面是堆原生js代码进行了封装。 Jquery是一个JS库,就是为了快速方便操作DOM,里面基本都是函数(方法)。 JQuery优点: 轻量级,核心文件才几十kb 跨浏览器兼容,基本兼容了现在主流的浏览器 链式编程,隐 ...
分类:
Web程序 时间:
2021-06-28 20:29:42
阅读次数:
0
安装epel [root@localhost ~]# yum -y install epel-release 安装缓存 [root@localhost ~]# yum makecache 安装需要的软件 [root@localhost ~]# yum -y install cobbler cobbl ...
分类:
其他好文 时间:
2021-06-28 20:29:07
阅读次数:
0
创建新节点 createDocumentFragment() //创建一个DOM片段 createElement() //创建一个具体的元素 createTextNode() //创建一个文本节点 添加、移除、替换、插入 appendChild(node)removeChild(node)repla ...
分类:
移动开发 时间:
2021-06-28 20:27:50
阅读次数:
0
Protobuf 介绍 Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but sm ...
分类:
Web程序 时间:
2021-06-28 20:17:44
阅读次数:
0
当满足某个条件的时候,才进行组件的注入 常见的如下: run.containsBean用于判断是否含有某个组件 System.out.println("++++++++++++++++++++++++++++++"); boolean tom = run.containsBean("tom"); S ...
分类:
编程语言 时间:
2021-06-28 20:10:39
阅读次数:
0
sql语句更新xml基本写法 <mapper namespace="com.keyou.dao.samSystem.SamApplyDao"> <update id="updateRejectSamApply"> UPDATE SAM_APPLY <trim prefix="set" suffixO ...
分类:
数据库 时间:
2021-06-28 19:45:46
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1"> <match url="^index.html" /> < ...
分类:
Web程序 时间:
2021-06-28 19:43:32
阅读次数:
0
创建一个Spring的helloworld项目 创建maven项目,导入Spring的环境依赖 可以参考:https://www.cnblogs.com/nwu-edu/p/9542074.html,为了简化直接导入webmvc的依赖 <dependency> <groupId>org.spring ...
分类:
编程语言 时间:
2021-06-28 19:43:13
阅读次数:
0
IOC理论的推导 假设我们要写一个user相关的业务 UserDao接口 package com.dreamcold.dao; public interface UserDao { public void getUser(); } UserDaoImpl实现类 package com.dreamco ...
分类:
编程语言 时间:
2021-06-28 19:42:06
阅读次数:
0