| |
 |
Thursday, December 16, 2004 |
Yes, it's time to breathe some life back into the Buttso Blog.
With the release of the OC4J
10g (10.1.3) Developer Preview 3, there's quite a bit of new
information to share, so the Buttso Blog will be reinstated to active
duty.
Some topics likely to seen here in the not too distant future are:
1. Using the new <oracle:deploy> ant tasks for application deployment operations with OC4J
2. Management stuff around JMX, MBeans, JSR77 stats, etc.
3. Shared libraries, classloading
4. A bit about clustering using the new application level clustering feature we have in 10.1.3.
And whatever else comes to mind when I get to my desk in the mornings.
12:22:06 PM
|
|
A Code Snippet to Create an AttributeChangeNotification
protected void setOrderProcessing(boolean val)
{
orderProcessing = val;
AttributeChangeNotification notification =
new AttributeChangeNotification(
this,
System.currentTimeMillis(),
System.currentTimeMillis(),
"OrderProcessing Changed",
"OrderProcessing",
Boolean.TYPE.getClass().getName(),
Boolean.valueOf(orderProcessing),
Boolean.valueOf(val));
sendNotification(notification);
}
12:13:18 PM
|
|
© Copyright 2004 buttso.
|
|