vorrei raggiungere i seguenti obiettivi:catch-all (jolly) servlet url-pattern sovrascrive modelli estensione del file
/webapp-context/Page-1 -> Handled by my custom "ContentServlet" /webapp-context/Another-Page -> Handled by my custom "ContentServlet" /webapp-context/Page-with-long-title -> Handled by my custom "ContentServlet" /webapp-context/_cms/<something>.zul -> Handled by ZK framework
Il mio ultimo tentativo si presenta così (estratto web.xml):
<servlet-mapping> <servlet-name>zkLoader</servlet-name> <url-pattern>*.zul</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>myContentServlet</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping>
Purtroppo ora il mio tenore di servlet gestisce tutte le richieste (ho pensato che il più specif il modello ic ha la precedenza?).
Nessun conflitto esiste se mappo il mio servlet di contenuto al modello "/ webapp-context/content/*", ma non è quello che voglio.
Grazie per il vostro tempo.