tags:

views:

368

answers:

1

The com.google.gwt.app.place package is new in GWT 2.1 which came out yesterday. Do you have any example on that API? How do I effectively use it? The GWT samples does't help at all.

+1  A: 

I've seen Place used is in the scaffolding generated by the GWT plugin for Spring Roo.

If you want to generate a quick app to take a look:

start the roo console

>project --topLevelPackage com.testapp.test
>gwt setup

Then have a look at the generated code in the com.testapp.test.gwt.scaffold package.

Ash Kim