Thursday January 27, 2005
Creator is nominated as Development Tool of the Year. If you use it and
agree, please consider
casting a vote
for it. The other candidates in that category are
MyGeneration Code Generator/OR Mapper from MyGeneration Software,
Poseidon for UML from Gentleware, Eclipse from the Eclipse Foundation, and
RADvolution Designer 2005 Professional Edition from DevelopGuidance.
You might have used Code Clips already, since they're featured prominently in the various Creator tutorials .
However, the editor has another less visible feature called "abbreviations". You can define code fragments which are automatically inserted into the document at the caret position when you type the abbreviation's name followed by the space character.
One such useful abbreviation is one to insert a try/catch
block. When writing code in your Creator Java files, you're often dealing with
database related calls, which might throw exceptions, so you need to catch them.
You also want to send the exception message to the log file so you can figure out
what went wrong. To do that, you have to add a
try/catch block to your code. Creator has an
abbreviation for that, named "trc" (for try/catch). Just
type in the four keystrokes [t], [r], [c], [space], and your editor
will go from
to (as soon as you hit space):
Voila! Notice that it puts your caret in the right place too (and that
the original abbreviation name, trc, is gone.)
Here are some other abbreviations you can try: fori to add
a for loop, and
sout for System.out.println("").
You can easily add your own abbreviations too, or, change
the existing ones. The following screenshot shows you everything you
need to know:
try {
|
} catch (Exception ex) {
log("Error Description", ex);
}
If you come up with some really useful ones, let us know and we'll add them to the builtin default abbreviations.
(2005-01-27 19:32:08.0) Permalink Comments [1]
Tuesday January 25, 2005 Joe Nuxoll has published the Creator Design Time API Guide for JSF components. This guide tells you how to add design time behavior to your components such that users of your components can have a rich experience with them in the IDE - you can create interactive wizards run at component drop, write customizers for the components, allow your components to specify which components are allowed as children of your container component, etc. etc. I have a special fondness for these APIs since they are how you can "talk" to the designer :-) (The API javadocs have been available online for a while.)
He will also soon be hosting an online chat on the subject. If you're a JSF component developer you definitely want to both read the article in depth and check out the chat!
Joe has a blog but it looks like he needs a nudge to start writing... Take it away, Joe!
(2005-01-25 20:51:17.0) Permalink Comments [1]
There's some exciting Solaris news today -- the first part of Solaris has been open sourced (with the rest on the way - and also, a record 1,600 Sun patents have been released.)
I'm a big Solaris fan - I used SunOS in college, and since then I've been at Sun for nine years where Solaris has been my primary development platform. The first five years at Sun I worked on the Solaris development tools, mostly the debugger, so I really got to get close to the metal. I therefore found Bryan Cantrill's blog entry on the just released Solaris DTrace code really interesting -- I love source code snippets with juicy comments!
Now that I work on Creator, the platform focus is different since we're trying to
address other platforms like Windows, Linux and OSX. Most of my coworkers work
on those platforms, so I'm the primary "Solaris advocate" in our group.
I work at home three days a week (let's not count the number of nights...)
and it's all on Solaris. On my two days going down to the Sun campus I work
on OSX with my Apple laptop. I really like OSX since I can find a terminal, and
treat it like Unix with a pretty GUI. But I sure miss Solaris facilities like
the p-tools (pgrep, pkill, ptree, ...).
Thursday January 20, 2005 In Creator, your project name is used as the java package path, and as the web application context name.
What if your project has grown and you want to change the name, either
because you don't think webapplication24 is very professional
sounding in your context name (which shows up in the web app URL), or because
you don't like to see myfirstsimpletest as the package name on all your now complex page beans?
Unfortunately, there's no support in the IDE to do this yet. Which means you have to do it by hand. It's actually pretty straightforward, and there are no surprises; you just need to change all references in the project from the old name to the new name. However, if you make any mistakes, it is difficult to track down the problem. Pages will refuse to open, etc., because under the covers the IDE may fail to locate the page bean for a JSP since it uses the package path to do the mapping, for example. Therefore, be careful, and I don't take any responsibility for any damage to your files, or mood, as a result of trying the below steps. Worked for me, your mileage may vary.
First thing's first: Make a backup of your project. If things go wrong, you'll want to be able to start over - but starting over with the rename operation, not starting over creating your project from scratch!
And while I have the red paint out:
Don't open your project in the IDE until you are completely
done! If there are inconsistencies in the project, the IDE will
attempt to "fix" it, and suddenly you end up with multiple
getApplicationBean methods,
the project file referring to both the old and the new package name, etc.
When you create a project, Creator takes your project name and creates a "package name" out of it. This package name is used in all the Java beans in your project, it's used as the deployment context root, etc. The package name is derived by lowercasing your project name, and removing all non-identifier characters from it, such as punctuation, whitespace, etc. Therefore, "My Project" becomes "myproject". I'll use "myproject" as my sample old name in the following code fragments, and "New Name" as the new Project name (which means "newname" will be the new package name and context root).
My
Project to New Name.
src/src/myproject to src/src/newname
package myproject;
to package newname;, and update the return types
and casts in the getApplicationBean1 and
getSessionBean1 methods (4 lines to change). (These
are not present in all files.)
src/web/WEB-INF/managed-beans.xml.
Change the managed-bean-class entries in the
obvious way:
<managed-bean-class>myproject.Page1</managed-bean-class>
into
<managed-bean-class>newname.Page1</managed-bean-class>
web.xml or faces-config.xml
(this is not common unless you are an expert user) make sure any references
to the old names in these files are updated.
project-data/private/Windows/build/project-data/project.properties:
app.name=myprojectinto
app.name=newname
project-data/project.prj. Be careful!!
Change
<folder name="myproject"> <file name="ApplicationBean1.java"/> ...into
<folder name="newname"> <file name="ApplicationBean1.java"/> ...
<project name="My Project" type="WebApp"> ... <attr name="displayName" stringvalue="My Project"/> ... <attr name="defaultPackage" stringvalue="myproject"/> ... <attr name="contextPath" stringvalue="/myproject"/>into
<project name="New Name" type="WebApp"> <attr name="displayName" stringvalue="New Name"/> <attr name="defaultPackage" stringvalue="newname"/> <attr name="contextPath" stringvalue="/newname"/>
You may have noticed in the last step that there is a separate entry
in project.prj for the
contextPath. If all you care about is changing the context
path which shows up in the project's URL when deployed, you
MAY be able to just change this entry in the project file and
leave all your code with the old package name. I have not tried that - so
I have no idea if it works. If anyone tries it, let me know and I'll
report your findings.
Sunday January 16, 2005 In some previous blog entries I've shown the designer rendering common web pages from the net. These are great testcases for me to make sure the XHTML and CSS layout engine is working correctly, at least for common web constructs. You may wonder how I got the designer to render html pages. No, I didn't sit and try to replicate the page by dragging JSF components on the page. There's a hidden feature in the designer called "Page Import", which as of Patch 5 is not so hidden.
There's a
new document about the feature here.
Have you been curious what the little green triangles are? See image on the right -- the little triangular green icons in the top left corners of some components. If so, go read the article!
Note that this is a preview feature, so be careful. I just discovered a
bug the other day: If the html page you're importing has an xmlns
attribute on the <html> tag, Bad StuffTM
happens. Fixed but not in bits that are available yet. For now, remove
the attribute before importing.
There is one really cool aspect of Page Import I've gotta point out though. Some browsers, like Mozilla and Internet Explorer, can save a "complete" web page, where they not only save a page but all required images and stylesheets as well. The problem is that they only save images and other resources that are referenced in the html page. If the page being saved has an image (or secondary stylesheet) that is referenced from a stylesheet or style attribute, the image will not be imported. The designer page import feature on the other hand does handle this; it imports all external resources referenced in any reachable stylesheets as well, and these stylesheets are rewritten to reference the imported copy.
Thursday January 13, 2005
This question came up in the forum:
How can you highlight particular rows or cells in a database table
based on business logic? For example, in the screenshot on the right,
I've highlighted the name of any rows where the job title is equal to "CEO".
First, you'll want to use CSS style classes; set up one style class for normal rows, and another for rows or cells to be highlighted. Add something like this to your page's stylesheet (it's in the Resources folder):
.normal {
}
.highlighted {
color: red;
font-weight: bold
}
Next, you'll want to use value binding to tie the styleClass
property for items in the data table to some property which will return the
right style class to use for each cell.
Let's say you drop a Data Table component, and then drop the "PERSON" table (from the sample "Travel" database bundled with Creator) on that Data Table. Voila, you get a table populated with PERSONID, NAME, JOBTITLE and one other row that I deleted by using the Table Layout item in the context menu.
Next let's create the property we'll bind the styleClass to.
Go to the page bean (by for example double clicking on the page background),
position the caret in between some of the methods, right click and select
Add Property, leave all the defaults (so you're creating a String
property), and name it something like "nameStyle". This will create
a method name getNameStyle() which you now need to implement
such that it returns the String style class name "highlighted" or "normal"
depending on which row is being rendered when the method is called.
The conceptual difficulty in creating a property to return the right style class name to use is that a property accessor is a simple getter without arguments -- you don't have a "parameter" to tell you which row is being rendered when your method is called. Here's the trick:
public String getNameStyle() {
Object o = getValue("#{currentRow['JOBTITLE']}");
if ("CEO".equals(o)) {
return "highlighted";
} else {
return "normal";
}
}
There are two things to notice:
getValue()
#{currentRow to get the database row
values for the current row being rendered in the table
#{currentRow['JOBTITLE']}, is precisely what the JOBTITLE
column's Output Text component is bound to. Just like the component's
renderer, we can find the data for the current row, and then apply any
logic we want to it - here's it's as simple as checking if it's equal
to "CEO", but you could evaluate multiple different fields, including
ones not shown in the Data Table, and apply various logic to decide which
style class to return. And note that there's nothing requiring you to
limit yourself to two style classes, and you can highlight any number
of rows, not just one.
The way you bind the styleClass property to for example the
Name column is to locate the output text in the Name column (not the
one in the header, the second one), right click on it, and choose
Property Bindings. That should give you a dialog like the one
on the right (click to enlarge). On the left, choose the
styleClass property, and on the right, drill into Page1 and
locate your new property, nameStyle. Don't forget to hit
Apply when you're done - it's a little unintuitive.
TIP: The expression language syntax is explained in a help document that ships with Creator (as of one of the recent patches). Just go to the Help menu, select Help Contents, click on Search, and type "Expression"; for me the top topic returned is the one you want - titled "JavaServer Faces Expression Language".
Monday January 10, 2005 As promised, Creator patch 6 is available. Go get it. It's not as memory hungry as patch 5, it also adjusts your heap settings to better values, it properly handles opening projects with errors. I know there were also some database handling fixes in there, and of course getContext() has been restored.
A couple of users who had trouble with Reef have tried patch 6 and have reported success. Please let us know if there are any remaining problems. Hit the Auto Update center now!
(2005-01-10 14:33:01.0) Permalink
Saturday January 08, 2005 Okay, this is not hidden in the same sense as the previous hidden Creator features I've blogged about, but nevertheless it's a feature that is probably not well known and is not documented anywhere.
Let's say you want to add an image to your page. As of patch 5, all you need to do is locate your image
on the desktop, then drag and drop it on your page in the designer.
You can even
swipe out a selection of images, then drag these to the designer and
they are all added.
When you're done, the images are placed where you dropped them. You
can now move them around further etc.
The images shown here are a couple
of images I had lying around; one is a splash screen used
internally in early Creator builds, back when it was called Rave.
The ball is the image used as a dock icon for Creator on Apple OSX.
Notice how transparency for overlapping images works in web pages
too (the "shadow" portion of the ball icon is casting
a shadow on the yellow splash screen); I checked and both Mozilla and
Safari handle this as well. There are some problems
with Internet Explorer.
The drop handler is not limited to images. You can drop text as well. Select some text, and drop it on the designer. This will automatically create an Output Text component, assign the clipboard text as the output text value, and position the output text at the drop position.
You can also drop files to quickly add these to the project. If the file happens to be a stylesheet, then the current web page that you dropped the stylesheet on will also be added to the list of stylesheets associated with that page. You can use drag & drop from the Project Navigator as well. Let's say you've added a stylesheet to your project, but it's not used by the current web page. Just drag from the stylesheet in the Project Navigator to the web form, and this will add a style link reference from the page to this stylesheet.
One final tip related to drag & drop: when you're editing let's
say the Java page bean for a file, and you need to refer to a component,
just drag that component from the application outline into the
source editor. This will insert the instance name in the editor.
For example, if your application outline
looks like the one shown on the right, you can drag for example the last
item shown into the source editor, and at the caret position it will
insert dropdown1Converter.
Wednesday January 05, 2005 We've spent some time analyzing the problems that were reported in Reef. There were a couple of issues. First is the one I've already described in a previous blog; projects with errors are not handled well when you restart the IDE (as after an IDE upgrade for example :-).
The second issue had to do with memory usage; a number of people reported hangs, which in all cases we've come across have turned out to be related to out of memory issues. I've already blogged about this a little bit, but essentially the max heap size was set too low. This became a problem for many of you when you upgraded to Reef, because with its additional features it consumed more of the available memory. Anyone whose projects were already near the memory limit suddenly got pushed above the limit, so Out-of-memory conditions started occurring. This also explains why for some, turning off the preview features helped, since that slightly reduces the memory used by the IDE.
However, in memory profiling looking for leaks we found that the CSS parser was consuming an unreasonable amount of memory. A little caching here, and little sharing there, and voila - the customer project is consuming 30% less memory... We're going to get these fixes to you as soon as possible; they're going to be put through a test cycle and then appear on the update center.
To analyze the memory usage, I used the NetBeans memory profiler. It's really cool. I look forward to it being integrated in NetBeans 4.1, and the underlying VM technology integrated in one of the upcoming JDK 1.5 releases.
Monday January 03, 2005 I just got back from a really nice vacation visiting my family in Norway. It's been ten years since my last winter-time visit to Norway. The temperature in my hometown Tynset was cold the first couple of days there (-22° Fahrenheit, or -30° Celsius). But I got to go cross-country skiing, and I hadn't forgotten how - I guess it's like bicycling - once you know how you never forget.
Everything about the trip was great. Celebrations were a bit somber this year though because of the Tsunami catastrophe in Asia .
I flew with
SAS.
Perhaps some other airlines offer this too (but certainly not all, since
I've flown several other big carriers in the last couple of months), but
I was really blown away by their flight camera feature.
Unlike the Channel 9 feature offered by United Airlines (where
you can listen to cockpit transmissions), you can choose to view the
forward facing (or the downward facing) camera on your TV screen. This
works at all times, including during take-off, during flight, during landing,
and even while the airplane is taxing back to the gate after landing!
It was quite a kick to "participate" in the landing process, seeing
the airplane aligning with the lit-up runway, seeing the approach angle
and so on. It reminded me of some flight simlator computer games I've
seen, but with unbelievably realistic graphics!
I'm reasonably rested from the plane ride home and now I'm catching up on e-mail.