说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 轻量级开发
1)  lightweight development
轻量级开发
1.
This paper analyzes and expounds the concept and principle of the lightweight development based on the research on present technology of information system development.
在研究目前系统开发技术和规律的基础上,分析和阐述一种轻量级开发的概念和原则,给出系统实现的技术模式,并以Spring,Struts,Hibernate技术框架的整合构建系统整体的工作流机制,展示轻量级开发的优势。
2.
Following the regular,lightweight development adopts the container Spring and takes advantage of Struts and Hibernate to meet the needs of quick development,timely maintenance and dynamic expandedness.
轻量级开发在遵循这种开发规范的基础上以Spring为容器,充分利用Struts和Hibernate的技术优势,来满足系统快速开发、及时维护和动态扩展的需要。
2)  lightweight opens software
轻量级开源件
3)  weight methods
重量级开发
1.
The difference between XP and weight methods is presented,finally,the excellence and defects on method of XP is discussed.
文章介绍了XP这一轻量级的开发方法的思想、活动、核心价值和方法,并对XP与重量级开发的方法论作了比较,最后讨论了XP方法带来的优点和缺陷。
4)  lightweight [英]['laɪtweɪt]  [美]['laɪt'wet]
轻量级
1.
Web-based lightweight workflow management system;
基于Web的轻量级工作流管理系统
2.
The Design and Implementation of A lightweight Network Intrusion Detection System;
一种轻量级的网络入侵检测系统的设计与实现
3.
Lightweight Security Scheme for Mobile Online Tax Returns System;
移动网络报税系统的轻量级安全解决方案
5)  light-weight
轻量级
1.
Design of Light-weight TCP/IP Stack in Embedded System;
轻量级嵌入式TCP/IP协议栈的设计
2.
A light-weight J2EE framework based on Struts,Hibernate and Spring were proposed,the layer structure and the workflow of the framework were given,and the advantages and disadvantages of the this framework were analyzed.
提出了基于Struts,Hibernate和Spring这3种框架的轻量级J2EE架构,给出了架构的层结构和流程,并且分析了该架构的优缺点,并将该架构应用到了院系级考务管理系统的设计中。
3.
To resolve the paradigm non-matching problem and decouple data access logic form business logic,a light-weight ORM architecture are brought forward.
为了解决这个难题,实现数据访问逻辑和业务逻辑的解耦,提出了构建一个轻量级ORM框架的方法。
6)  lightweight J2EE
轻量级J2EE
1.
Research and Implementation of E-Learning Platform Based on Lightweight J2EE;
基于轻量级J2EE的E-Learning平台的研究与实现
2.
Lightweight J2EE is a solution to software system architecture design, which has a simplified programming model and can respond to its container quickly.
轻量级J2EE架构是一种应用软件系统体系结构设计解决方案,具有简化的编程模型和更具响应能力的容器,对于大型事务处理、分布式能力和集群能力要求不高的业务应用,采用轻量级J2EE架构更具有灵活性、轻便性和较好的效率与效益。
3.
This thesis introduces the related technologies of lightweight J2EE and its advantages in application,analyzes its importance in the development of enterprise workflow system,and discusses the approaches and ideas to develop workflow system.
文章介绍了轻量级J2EE的相关技术及其应用优势;分析了轻量级J2EE在企业工作流系统开发中的重要地位;探讨了开发工作流系统的方法和思路。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条