`

杂项记录,待整理

阅读更多
    comment on table "HNASIS_TEST"."TA_FLIGHT_V2" is '系统的航班基本信息表';
    comment on column "HNASIS_TEST"."TA_FLIGHT_V2"."FLT_ALCDTW" is '航空公司两字代码';

1.exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of
又见这样的错误,原因是对于一些数字项由于从数据库里面取出的值为null

2.映射为bolean的字段,在建表时,如果没有设定字段的default值,会导致exception setting property value with CGLIB setter错误.设置好默认值问题就可以解决了



--------------------得到SPRING的BEAN-------------
1 .WebApplicationContextUtils     .getRequiredWebApplicationContext(servlet.getServletContext());  
public Object getBean(String name)  
   {  
       if (ctx == null)  
       {  
           ctx = WebApplicationContextUtils  
                 .getRequiredWebApplicationContext(servlet.getServletContext());  
       }  
       return ctx.getBean(name);  
   }

2. public static void main(final String[] args) throws Exception {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("context.xml", Boot.class); //必需放在WEB-INF/lib/class下面
        FooService fooService = (FooService) ctx.getBean("fooService");
        fooService.insertFoo (new Foo());
    }


3. ApplicationContext ctx = new FileSystemXmlApplicationContext(new String[] { "src/cn/com/jbaptech/po/applicationContext.xml" });ctx.getBean("fooService");

-

-------------------struts copy对象-----------------------------------

BeanUtils.copyProperties(itemNew, itemOld);

------------------手型鼠标 页面上的------------------------------

style="cursor:pointer"

-----------------------下载时,设置response的参数----------------------

response.setContentType("APPLICATION/OCTET-STREAM");
response.setHeader("Content-Disposition","attachment; filename=\""+new String(fullName.getBytes("gb2312"),"ISO8859-1")+"\"");


------------------------查找路径方法-----------------------------------
在类中: this.getClass().getClassLoader().getResource("/").getPath(); -- 返回 "工程/web-inf/classes"路径,可以把“/”替换成 ××.xml 找文件

--------------------------linux 乱改显卡型号后-------------------------
cd /etc/Xll
cp xorg.conf.back xorg.conf   //还原成以前的配置

----------web 项目在 JAVA中获得SESSION (配DWR)------------------

WebContext webCtx = WebContextFactory.get();
User o = (User)webCtx.getSession().getAttribute(AppConstants.SESSION_USER);

It's easy to use DWR and Reverse Ajax from a thread outside of DWR. You can't use WebContext though because that's only of use to threads under the control of DWR.In place of WebContext, you should use ServerContext, which has many of the same operations

--------------------excel-中的VB-----------------
Function fun(param,...)
  fun = "return"
End Function
连接用 &,转化Int()

--------------------EXCEL 1列隔行填充色--------------------------------
先选中列,“格式”--“条件格式”--“公式”--“=MOD(ROW(),2)=0”--“格式”选成需要的


--------------------------EXCEL 级联下拉-------------------------------数据 有效性 公式:=INDIRECT(A1),
分享到:
评论

相关推荐

    java_study_note:个人学习笔记

    杂项,日常学习中遇见的一些问题,进行简单记录。未来会详细整理到javaNIO基础前置笔记网上搜集。 网上搜集网上搜集停止更新,还是官方文档好用网上搜集基础上进行补充整理网上搜集基础上进行补充整理网上搜集基础...

    《仓库管理基础知识》PPT课件.ppt

    - 物料按状态划分区域:进料待检区、良品区、待整理区、待出库区、报废区和不良区。 - 物料摆放应符合安全规定,如与灯管和消防设施保持安全距离。 - 温湿度计定时登记,并定期校准。 - 设备保养和检测记录需...

    生鲜盘点大法(PPT32页).pptx

    新店开业初期需每周盘点,待运营稳定后转为每月两次。 二、盘点概念 1. 盘点公式:盘点毛利率是通过计算(本期销售 - 本期成本)/ 本期销售 *100%得出,损耗金额则是(销售总额 * (1- 采购预计毛利率) - 销售成本)...

    emacs planner pdf

    - **笔记**(Notes):记录杂项信息和其他需要注意的内容。 ##### 2.4 高级安装 对于有特殊需求的用户,还可以进行更深入的配置,例如自定义快捷键、集成其他 Emacs 插件等。 #### 三、使用入门 ##### 3.1 任务...

    The compact Org-mode Guide

    本指南是基于全面的 Org-mode 手册压缩整理而成,包含了所有基本特性和命令,并提供了重要的定制提示。对于那些因为手册篇幅庞大(约200页)而望而却步的新手来说,这是一个非常实用的入门指南。 #### 1.2 安装 ##...

    emacs org-mode guide

    - **Org-Mode简介:** Org-Mode是一种基于纯文本的模式,用于记录笔记、管理待办事项列表(TODO lists)以及进行项目规划。它不仅仅是一个编辑器插件,还提供了一个强大的文档创作和发布系统。 - **目标用户:** 本...

Global site tag (gtag.js) - Google Analytics