tong123123
unread,Feb 9, 2012, 5:35:59 AM2/9/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
in gwt.xml
<module rename-to='als'>
and in service, write a function
@RemoteServiceRelativePath("search")
then in web.xml
<servlet-mapping>
<url-pattern>/als/test</url-pattern>
</servlet-mapping>
compile, als folder under war
run>
the application cannot be run.
then delete the rename-to attribute
in web.xml, servlet-mapping,
use
<url-pattern>/com.ha.als.ALS/test</url-pattern>
delete the als folder under war
compile
a new com.ha.als.ALS folder is created under war
run>
everything is normal!!!
why the rename-to attribute cannot function properly?