eleven-china.blogspot.com
Dive into Technology: 一月 2009
http://eleven-china.blogspot.com/2009_01_01_archive.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 是作用范围最广的,在作用于整个应用的运行周期内。通常情况下,. 启动)时即被初始化,因此,一般对于独立于特定的职责和角色的,且需要在整个应用的周期内都需要的资源会定义在. 被自动释放。在实际的应用中,经常会将类似于用户信息,预置文件信息或授权信息等设置到. 发生更改之前都可用,即作用于同一页面内,例如,在不同页面之间跳转时,. 65292;因此,为了避免相互之间数据冲突,可以考虑使用. 开发过程中,经常会遇到各种各样的错误,其中有些错误比较容易排查,但是有一些则相对比较难以发现错误根源,此时,经常会使用到日志来显示诊断信息以帮助发现错误。在. 这由简单的常见问题日志组成,可在本地解决或跟踪这些问题,如资源不足、安全失败和简单的配置错误。 由现场服务工程师进行问题诊断, 现场服务工程师使用的日志信息可以相当复杂和冗长,远超过系统管理员的要求。通常,这样的信息需要特定子系统中的额外日志记录。 8221;项,在“. 326] DCUtil, RETURNING:. 335] R...
eleven-china.blogspot.com
Dive into Technology: Weblogic开启关闭
http://eleven-china.blogspot.com/2009/04/weblogic_20.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 近日由于项目需要,花了些时间部署了我们开发的demo环境到客户公司,客户公司使用的是IBM的AIX操作系统,由于是ADF应用,应用服务器也就毫无疑问地选择了Weblogic。而在应用部署过程中,总结了一些比较有用的Weblogic启动和关闭的脚本。 1、使用相关Telnet工具登录到远程服务器,创建将要发布应用的domain,这里名为demo domain。 此时,Weblogic可以正常启动,但是当使用ctrl c或关闭当前窗口后,Weblogic即立刻停止,显然在正式应用中这样的方式一般来说是不符合要求的。 3、后台启动(以服务方式启动)Weblogic:. 为解决上面描述的问题,需要在后台启动Weblogic,也就是经常提到的以服务的方式启动Weblogic,将信息输出到文件中,这里输出到demo.log。 Nohup ./startWebLogic.sh demo.log 2 &1 &. 查到后使用 kill -9 进程编号 停止该进程。 View my comp...
eleven-china.blogspot.com
Dive into Technology: 三月 2009
http://eleven-china.blogspot.com/2009_03_01_archive.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 或 set property listener. 步骤二:在页面中取值时,如果需要在一进入页面时就将该值取到并显示在页面中,可以将取值的相关代码写在页面对应的. 65292;完成之间的导航设置。分别双击两个页面,用向导创建出. RequestContext rc = RequestContext.getCurrentInstance();. String value = (String)rc.getPageFlowScope().get("var");. List list = ADFUtils.getBindingContainer().getAttributeBindings();. For (int i = 0; i. AttributeBinding abb = (AttributeBinding)list.get(i);. If (abb.getName().equals("FirstName") {. SELECT Jobs.JOB ID,.
kohlivikram.blogspot.com
My Learnings on OAF,ADF and SOA: July 2009
http://kohlivikram.blogspot.com/2009_07_01_archive.html
My Learnings on OAF,ADF and SOA. Thursday, July 9, 2009. Oracle ADF – I am beginner, from where I can start. There are many fellow developers who are just entering into the world of ADF and Jdeveloper. They do struggle a bit as from where to start from in ADF. Regardless of whether you are starting up with ADF 11g or 10g, in this post I will try to explain what all is required to start with Oracle ADF. Http:/ www.w3schools.com/XML/xml whatis.asp. If you are starting up with ADF 10g then at. Oracle Magazi...
kohlivikram.blogspot.com
My Learnings on OAF,ADF and SOA: March 2011
http://kohlivikram.blogspot.com/2011_03_01_archive.html
My Learnings on OAF,ADF and SOA. Monday, March 14, 2011. It’s an Interesting name. Isn’t it. I was searching about open source web frameworks, when I came across Vaadin. Vaadin is a RIA framework build on top of GWT. Google web toolkit). Started learning it with the address book tutorial . I must say, it’s a very impressive tutorial. Next step was to installed Vaadin plugin in eclipse and to create a CRUD. Subscribe to: Posts (Atom). View my complete profile. Oracle JDeveloper 11g Tutorials. Picture Wind...
kohlivikram.blogspot.com
My Learnings on OAF,ADF and SOA: Undo/Cancel changes in ADF 11g
http://kohlivikram.blogspot.com/2010/05/undocancel-changes-in-adf-11g.html
My Learnings on OAF,ADF and SOA. Sunday, May 9, 2010. Undo/Cancel changes in ADF 11g. Undo Edits in Jdev 11g. May 16, 2010 at 2:41 AM. I am unable to download your application http:/ www.4shared.com/file/91772443/17828aab/MyADFLearningApp.html. July 2, 2011 at 10:42 AM. Subscribe to: Post Comments (Atom). Undo/Cancel changes in ADF 11g. I am an Oracle Developer working on OAF, ADF, and SOA. Enjoy reading books and most important thing, enjoying my work(till today). View my complete profile.
eleven-china.blogspot.com
Dive into Technology: ADF Validator
http://eleven-china.blogspot.com/2009/04/adf-validator.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 实际应用中经常遇到对业务相关的数据进行Validate的情况。比如对输入数据进行格式限制/范围限制等。ADF为开发人员提供了相对灵活的解决方案。这里提供了几种Validator的不同实现方式。 65288;下述均使用Oracle XE自带的HR示例中Employees表作为示例表). 首先,ADF框架中所有的Validator默认都使用EO级别的Validator。EO层次可以设置Entity级别的Validator或Attributes级别的Validator。 选择需要的Validator Rule Type,写入相应的验证规则后,即可在Failure Handling中写入验证失败的抛出消息。在此处设置的消息将写入资源文件中。 最后,当VO被拖入页面时,对应控件将自动包含一个 f:validator 子控件,其绑定为EO层次的Validator。 Public class testValidator implements Validator {. One size ...
eleven-china.blogspot.com
Dive into Technology: Oracle Application Development Framework 简介
http://eleven-china.blogspot.com/2009/05/oracle-application-development.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. Oracle Application Development Framework 简介. Oracle Application Development Framework是Oracle Fusion中间件体系架构的重要组成部分,是一个端到端的J2EE开发框架。ADF框架通过提供实用级别的基础架构服务和虚拟的声明式开发体验,从而简化了J2EE开发。不同于其他开源开发框架,Oracle ADF提供了一个包含Business Service、Model、View、Controller的完整MVC实现,在企业应用架构的每一个层次都提供了支持。 12 Oracle ADF 11g框架简介. 最简单的View层实现即为一个包含用户界面组件的页面,并允许该页面中的组件调用Model层中的方法。Oracle ADF为了提高View层的重用程度,引入了如下结构体系。 在常的应用场景下,可以通过Page Template构建某应用的页眉、页脚、导航栏...Region是Fusion架构体系中...
eleven-china.blogspot.com
Dive into Technology: 二月 2009
http://eleven-china.blogspot.com/2009_02_01_archive.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 更新数据,一般在遇到这样的情况时,需要基于所有需要实现插入 /. 65292;不过,如果是在 VO. Protected void doDML(int operation, TransactionEvent e). If (operation = DML INSERT) {. EntityDefImpl student = StudentImpl.getDefinition. StudentImpl)student.createInstance2(this.getDBTransaction(), null);. NewStudent.setSId(this.getEmployeeId() ;. NewStudent.setSName(this.getFirstName() " " this.getLastName() ;. SuperdoDML(operation, e);. 12289;保存应用,运行业务组件浏览器进行测试。 坐在其中的某两个相邻的位置上,...
eleven-china.blogspot.com
Dive into Technology: 六月 2009
http://eleven-china.blogspot.com/2009_06_01_archive.html
About Java, Oracle ADF, Oracle EBS, JDeveloper, Google Techs, etc. 终于还是对GFW忍无可忍了,不知道Blogger何时才能解封,已经不报有任何幻想,在购买了域名、空间并进行备案后,决心转到了自己的独立域名网站( www.eleven-china.com. 65289;上去了,新站点名字将仍叫 Dive into Technology. 65292;这边的内容也将于近期搬过去,这里不出意外的话以后将不再更新或定期批量更新,希望朋友们能一如既往地关注和支持:)。 订阅: 帖子 (Atom). 的技术顾问,工作之余研究新技术是我的爱好,此博客由我和另外几位同事一起维护,他们也是我生活中的挚友。 I'm a Technical Consultant of HAND Enterprise Solution Company. View my complete profile. James Ward - RIA Cowboy. Java / Oracle SOA blog. One size doesn't fit all.
SOCIAL ENGAGEMENT