user3597697
user3597697

Reputation:

how to create clean urls and MVC in jsp?

I wanted to know that how to create clean urls or MVC in java/jsp? I am learning java and I'd like to develop websites in jsp with clean urls so if anyone knows, please help me.

Upvotes: 0

Views: 405

Answers (1)

mahesh
mahesh

Reputation: 1331

You can map jsp files in web.xml for clean urls as given below.

<servlet>
<servlet-name>yourjsp</servlet-name>
<jsp-file>/yourjsp.jsp</jsp-file> // here you can give jsp location
</servlet>

<servlet-mapping>
<servlet-name>yourjsp</servlet-name>
<url-pattern>/yourjsp</url-pattern>
</servlet-mapping>

Upvotes: 1

Related Questions