servlet:页面跳转
使用步骤
- 创建web项目
- 跳转方式
- get方法
- 在index.xml添加页面内容和路径
- 在src添加servlet包,加入hellpservlet方法继承于httpservlet,编写doget函数
- 在web.xml里面添加servlet两个标签
- servlet,添加servlet-name即方法名和servlet-class即方法路径(包.方法)
- servlet-mapping,添加servlet-name即方法名和url-partten即页面路径,与步骤1路径相同
- get方法
2.post方法与上面同理
1.修改index.xml
2.添加dopost方法