Java资源网

| JAVA基础 | 环境配置 | JDBC | 线程技术 | Socket编程 | JavaMail | JAVA与XML | 设计模式 | 技术新闻 | Java认证 | 程序人生 软件下载
| JSP&Servlet | Spring | Struts | Hibernate | JBuilder | Eclipse | WebService | EJB技术 | J2ME开发 | 应用服务器 | JXTA | Ajax
Articles search文章搜索
   关键字:
   类 别:
       
New download 最新下载
· [组件]HTML Parser 1.5
· [教程]WebSphere Studio应用教程
· [组件]JDom 1.0
· [工具]Junit3.8.1
· [教程]EJB编程及J2EE系统架构和设计
· [教程]EJB教程
· [教程]J2EE Tutorial中文版
· [教程]Java编程思想2(英文)
· [教程]java编程思想(完整版)
· [教程]Java网络编程
New articles 最新文章
· 设计移动 Web 服务
· 解析XML的时候完全忽略DTD
· 理解XML Schema XML Schema 初步
· 标签库的深入研究
· 提升JSP应用程序的七大绝招
· 如何使用JDOM对XML文件进行操作
· 处理XML字符串中特殊字符
· 利用Digester把XML转换成为Java对象
· 使用WebService 和RMI远程协作
· 使用Axis开发Web Service程序
Articles top 热门文章
· Eclipse基础--plugin插件安装(6644)
· eclipse+tomcat+lomboz的安装配置说明(4774)
· Java程序员就业前景(4584)
· Windows下JAVA环境变量的设置祥解(3788)
· Tomcat下JSP、Servlet和JavaBean环境的配置(3716)
· 使用links方式安装Eclipse插件(3698)
· 一个老程序员的心理话(3533)
· linux下jdk的安装与配置(3459)
· 初学者入门:Structs中基本配置入门(3334)
· Eclipse 运行命令行参数大全(3084)
您的位置:首页>>Java认证>>一位通过SCJD的外国人的心得
一位通过SCJD的外国人的心得
2005-06-24   来源:China IT Lab  作者:China IT Lab
  Today I check https://www.galton.com/~sun_ss and found myself passed SCJD. I used to think that Sun will email me about the result but it is not necessary. I downloaded the assignment(Flight by night) on March 13, 2002, uploaded on May 3rd, 2002(unable to upload first, solved 1 day after I emailed who2contact), and took the essay test (only 5 questions) on May 12th, 2002, got passed on May 23th, 2002. Result:
  Test: Sun Certified Developer for the Java 2 Platform (310-027)
  Date Taken: 2002-05-23 01:31:17.153
  Grade: P
  Score: 0142
  General Considerations(maximum = 58): 54
  Documentation(maximum = 20): 20
  GUI(maximum = 24): 19
  Server(maximum = 53): 49
  
  My major design choice and considerations are as follows: (almost my designChoice.txt)
  I think most of them are common, nothing particular.
  
  1) RMI vs Object Stream. I use RMI instead of Sockets
  
  2) I modify the database class - suncertify.db.Data for easy usage. Also there are 2 deprecated methods in suncertify.db.Data, which need modification.
  
  3) My search logic is pretty simple. For example, say we got three search criteria (origin='xxx', destiny='xxx', carrier='xxx'), I will search three times respectively with each criteria and get three result sets. The record which exists in each of the three result sets is the one we need.
  
  4) Local/network
  I have a interface named RemoteData, which have all the public methods of Data. The RemoteDataImpl is the RMI implementation in server of this interface, which just maps the remote invocations to local ones. Also in Data class, I have a doBook() method which is used to deal with the booking process in the sequence of lock, read, modify if applicable and unlock the target record. It might mot be very suitable to put this business method in a Data class, but this is the easiest way to conform local mode with network mode, and make sure the booking process is in the same thread in server with network mode. So I can use the reference of current thread as the owner of the lock.
  
  5) Lock/Unlock
  I use wait/notify mechanism for lock/unlock. I use the reference to the current thread
  as the ID(owner) of the lock. When a locked record is to be unlocked, the reference of unlocking thread will be compared with the owner of the lock, if same, unlock the record, otherwise do nothing.
  
  6) Server
  My data server just instantiates a RemoteDataImpl object and bind it with a predefined name.
  I don't designs a GUI for server.
  
  7) Client GUI
  I hava Entry class to start the MainScreen according the mode the user selects
  in the command line parameter. The first parameter (-L or -N) indicates the local mode or
  network mode. In local mode, the location of db.db is needed as the second parameter.
  In network mode, the address and port of data server
  
  As to the deployment, I decide to pack the _stud.class into client.jar instead of downloading it from the server for facilitation. So I do not use a SecurityManager for the clients.
  
  
  I would like to thank Mark, Sid, Sai, Adam and Javaranch. Next I will run for SCWCD.
  
  Good Luck, Every one!
  
  Leon Wang
  5-29-2002
  
  --相关文章--
· 现在应该考 SCJP 1.2 还是 SCJP 1.4? (2006-04-04)
· 考试要点分享——SCJP考点总结 (2006-04-04)
· Sun认证Java程序员5.0升级版本 (2006-04-04)
· SUN认证JAVA程序员考试大纲 (2005-08-22)
· SCJP考题中的陷阱 (2005-08-22)
· SCJP认证考试全接触 (2005-08-17)

版权所有©2005-2006 JAVA资源网 渝ICP备05007591号 虚拟主机 | 关于我们 | 联系方式 | 广告业务 | 网站地图 | 友情链接