I understand that URL patterns can be used to have some handled under HTTP and others under HTTPS.
Let's imagine a web application with two servlets, each accessed with different URL patters (for example .../myapp/servlet1 and .../myapp/servlet2), how can I have to first one handled by HTTP and the second with HTTPS?
Can you provide a configuration example?
Thanks!