- 浏览: 90368 次
- 性别:
- 来自: 南京
最新评论
-
sunjinglai:
axis.jar
常用jar包下载链接 -
lihao2372:
谢谢
oracle debug权限 -
chex227:
chex227 写道 :crh
spring mail Exception -
chex227:
:cr
spring mail Exception -
chex227:
...
spring mail Exception
文章列表
为防止,IE8下内存溢出
解决方法:
打开一页面以前关闭另一页面;
另一场景,使用bootbox.confirm
需先关闭 confirm 在打开 modal
bootbox.js v3.3.0
// wire up button handlers
if (typeof cb === 'function') {
div.modal("hide");
hideModal = cb(e);
}
解决方法一:加一个exception异常处理
begin
you logic
exception when no_data_found then
you need operate/null;
end;
解决方法二:更改select语句,如:
select count(*) field into var from table where ....
增加一个count(*)即使没有找到数据,也会返回0,而不是null。
spring quartz version
- 博客分类:
- Spring
版本间整合
<spring.version>3.2.3.RELEASE</spring.version>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.1.7</version>
</dependency>
如下处理的好处为:
1. 不用因为查询而另外定义bean(新增,修改:做bean的映射比较好)
2. 415的处理为修改ajax contentType:'applition/json',默认传递方式会报不支持
$.ajax({
url:'...',
data: {data:JSON.stringify(param)},
dataType: 'json',
success : function(results){
if(results.result) {
alert('totalSize : '+ results.tot ...
require js乱码
- 博客分类:
- require.js
修改require.js文件
搜索charset 关键字,修改之
/**
* Creates the node for the load command. Only used in browser envs.
*/
req.createNode = function (config, moduleName, url) {
var node = config.xhtml ?
document.createElementNS('http://www.w3.org/1999/xhtml', 'html:script ...
找到mavenWEB工程下的.settings
org.eclipse.wst.common.component
修改;类似如下即可
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
...
报错的文章 ,引用了,
http://www.51testing.com/html/02/n-807902.html
oracle中的函数
- 博客分类:
- dataBase
引用文档:http://hi.baidu.com/faith_55/item/cbbaf31817ff166a3f87ce8c
一、字符函数:(接收字符的输入并返回字符或数字)
1、lower()函数:(此函数将全部的大写字母都可以变为小写字母)
SELECT lower('ABCDE') FROM dual ; dual是一张虚拟表
...
参考
https://bugs.eclipse.org/bugs/show_bug.cgi?id=344597
前提环境,A用户访问B用户下的表C
C 在 A 下能查询,但是存储过程A.XX不能访问C(A 下建了C的同义词)
原因:
需要对表显示赋权
parent key not found
- 博客分类:
- dataBase
--- Cause: java.sql.SQLException: ORA-02291: integrity constraint (SPEC.FK_REFERENCE_570) violated - parent key not found
除了要看,外键是否有值外,还要看外键引用是否正确:外键的用户名,表名,字段
在WebSphere6连接Oracle 10G的时候,出现以上错误.可以采取以下两种方式解决:
1、重新启动nodeAgent
2、强制同步
最后是重启集群 解决问题的
注:测试是通过的,应用 程序访问报错
Table tableItem tooltips
- 博客分类:
- SWT
默认情况下,SWT的Table只会给整个Table设置Tooltip,要对每一个TableItem设置Tooltip的话,就要监听鼠标事件了:
table.addMouseTrackListener(new MouseTrackAdapter() {
public void mouseHover(MouseEvent event) {
Point pt = new Point(event.x, event.y);
int index = table.getTopIndex();
while (index ...
原servlet上传使用了如下上传方式
DiskFileUpload fu = new DiskFileUpload();
// 设置最大文件尺寸,这里是4mb
fu.setSizeMax(Integer.parseInt("4194304"));
// 设置缓冲区大小,这里是4kb
fu.setSizeThreshold(Integer.parseInt("4096"));
// 设置临时目录:
String a = System.getProperty("user.d ...
you need to set lazyLoadingEnabled is false
like this
<settings useStatementNamespaces="true" lazyLoadingEnabled="false"/>
or
lazyLoadingEnabled="true" enhancementEnabled="false"
参考:http://blog.csdn.net/prince2270/article/details/5974363