application name与你在tomcat中部署的应用名一致,url path指定访问这个应用的url。例如上面的例子可以通过http://localhost/examples/来访问tomcat中的examples应用。
(五):中文问题
一般jsp的乱码问题可以通过在jsp中加入<%@ page contenttype="text/html;charset=gb2312" %>来解决,至于servlet的乱码在可以使用servlet2.3中提供的httpserveletrequest.setcharacterencoding函数。更详细的中文问题请见jsp/servlet 中的汉字编码问题。