i have an application based on Eclipse RWT (standalone version). It's a rather complex enterprise application involving Spring dependency injection and a lot of frameworks to be initialized at startup.
Currently I'm in need of a second view on the whole thing. The initialization stuff is a bit complex and I want to reuse it. Further I don't want to deploy a second webapp on my Tomcat. Is it possible to implement two EntryPoints and bind each of them to a separate url-pattern?
e.g.
url-pattern /first
entryPoint com.example.myapp.FirstEntryPoint
url-pattern /second
entryPoint com.example.myapp.SecondEntryPoint
Is this possible or do you have any alternative approaches to achieve this?