Question

its easy to intercept any request coming to a specific domain like

http://localhost/stuff

This would be something like

@Controller
@RequestMapping("/view")
public class JsController {

logger.info("Client hit stuff domain);

}

Easy enough

Question: How do you intercept ANYTHING that begins with domain view?

Example

http://localhost/view/someView1

logger.info("Client is within subdomain 'view");

http://localhost/view/someView2

logger.info("Client is within subdomain 'view");

http://localhost/view/js/helper.js

logger.info("Client is within subdomain 'view");

Était-ce utile?

La solution

Maybe I misunderstood, but this mapping

@RequestMapping(value = "/view/**")

will catch every path starting with /view.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top