Access the application from the browser with the URL localhost:7005/ctmodelhouse/
To find the port number mentioned in the above URL:
- Find the port number from Tomcat 8 app server configured in Eclipse.
OR
- Open server.xml from the path <Tomcat-Installed-Folder>/conf/server.xml
- Find the <Connector> element with the protocol attribute set to value containing 'http' and see the value assigned for the port attribute. See the following sample
snippet:
<Connector connectionTimeout="20000" port="7005" protocol="HTTP/1.1" redirectPort="8443"/>