- 浏览: 12329 次
- 性别:
- 来自: 广州
最新评论
文章列表
最近弄之前未经手的一个项目,碰到ocx出现问题,一直未真正找到原因来解决,经过同事提醒通过客户端文件交互数据到web应用,最初预备用cookie来传递信息,实际操作时发现实现起来并不轻松,尝试查找普通的文件交互,最终找到FileSystemObject对象确实可以实现,这方面资料非常多,就不多说。
问题在于IE下使用ActiveX控件设置非常麻烦,当IE选项->安全->internet/本地Intranet安全级别都设置为最低(最初测试只使用了本地的网页文件,未配置到网站下),设置好信任站点(后面安装了IIS),结果提示:
消息: Automation 服务器 ...
文章引用自关于java中的OutOfMemory种类和解决方法
1、OutOfMemory的三种情况
1) 永久区溢出 Exception in thread "main" java.lang.OutOfMemoryError: PermGen space
这一部分用于存放Class和Meta的信息,Class在被 Load的时候被放入PermGen space区域(包括常量池: 静态变量),它和存放Instance的Heap区域不同,GC(Garbage Collection)不会在主程序运行期对PermGen space进行清理,所以如果你的APP会LOAD很多CL ...
一个简单的存储过程,删除不需要的数据
create or replace procedure PROBS_CLEARDATA is
tempdate nvarchar2(200);
str nvarchar2(2000);
begin
select to_char(sysdate - 1, 'yyyy-mm-dd hh24:mi:ss')
into tempdate
from dual;
--暂时确定清理数据范围为:用excel导入的数据中一天前删除的数据
declare
cursor n is
select c.tablename from bdclea ...
引用:http://achievo-bruce-126-com.iteye.com/blog/218369
a different object with the same identifier value was already associated with the session: 的解决
在做项目的时候也遇到这个问题org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:,但当是我没 ...
List<Bdinfo> bdinfos= this.getByIds(Bdinfo.class,
bdinfoIds.toArray(new String[bdinfoIds.size()]));
for (Bdinfo bdinfo : bdinfos) {
// 版本处理
bizService.saveVer(bdinfo, xxxx, xxxx);
// 删除Project表
Project project = bdinfo.getPjid();
if(project.getBdinfoCollection()==null && ...
1、先从user_objects中查询到该表的object_id:
select object_id from user_objects where object_name=upper('XXX--表名');
2、根据查到的object_id知道使用该表的session:
select * from v$lock where id1=&object_id;
3、在从v$session视图中查到该session的SID和SERIAL#:
select * from v$session where sid=&sid;
4、杀掉这些进程:
alter system kill sessi ...
引用:http://mobile.51cto.com/windows-phone-336288.htm
1、在微软官方网站下载Windows Phone Developer Tools RTW:
官方下载地址为:http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce&displaylang=en
2、将下载到的文件(vm_web.exe)解压。在命令行模式下,输入vm_web.exe /x,选择好文件解压的地址,我放在了E:\vm_web的目录下 ...
Query获取Select选择的Text和Value:
语法解释:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text
3. var checkValue=$("#select_id").val(); //获取Select选择的Value
4. va ...
tomcat启动时异常信息:
严重: ClassNotFoundException while loading persisted sessions: java.lang.ClassNotFoundException: org.springframework.security.core.context.SecurityContextImpl
java.lang.ClassNotFoundException: org.springframework.security.core.context.SecurityContextImpl
at org.apache.catalina.loader.W ...