我是初学者,在原首页面前面添加了一个登陆页面,从登陆页面转到原首页后导致首页的servlet调不起来了;
转页面代码:
     window.open('app/welcome/index.html',"_blank",'top=0 ,left=0,height='+higth+',width='+width+',status=yes,toolbar=no,menubar=yes,location=yes,resizable=yes');
     window.parent.opener=null;
     window.parent.open('','_self');
     window.parent.close();
web.xml中servlet原来的映射配置为:
<servlet-name>CreateMemu</servlet-name>
<url-pattern>/CreateMemu/*</url-pattern>
请高手指点,谢谢!