You do not need to "run it". If you specify a custom ID generator in the configuration (zk.xml), the zk application you run will use it to automatically create a new ID for every widget on the client. Using a static ID generator just makes sure that the IDs are always created in the same sequence, the default one is somewhat random.
You can see the IDs in the browser (in the developer console, the html tree will show you the "id" attributes of certain elements). You can also access them by Component.getUuid()
.
By the way, there is also a built-in implementation of a static ID generator: org.zkoss.zk.ui.impl.StaticIdGenerator
. Read zk's testing tipps, they mention it there and also explain why you would use it.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…