You can use
Servlet in This case.
For this purpose you need to configure web.xml
<servlet>
<servlet-name>HidePath</servlet-name>
<servlet-class>package.servlets.HidePathServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HidePath</servlet-name>
<url-pattern>/path</url-pattern>
</servlet-mapping>
Now here you can write code in HidePathServlet.java file. so whenever you invoke this path "http://xyz.com/path", HidePathServlet will be invoked, and the rest of thing i leave on you.
Thanks