I have an legacy application written with Taspestry 4.
How can I upgrade it from Tapestry 4 to Tapestry 5.3.8?
Unfortunately I have never had experience before with Tapestry.
I can't find any migration guide. All what I can find on Internet is
Tapestry 5 did not even attempt to be backwards compatible to Tapestry 4. Instead, it laid the ground work for true backwards compatibility going forwards.
Currently I just found that annotations:
import org.apache.tapestry.annotations.InjectObject;
import org.apache.tapestry.annotations.Persist;
may be replaced with
import org.apache.tapestry5.ioc.annotations.Inject;
import org.apache.tapestry5.annotations.Persist;
Also how can I get rid off hivemodule.xml
?
I'll be thankful for any links, documentation or advice.