在电子商务系统的建设过程中,下列哪项活动不是系统实现阶段的任务()。
A. 培训
B. 测试
C. 系统切换
D. 软硬件平台选型
查看答案
电子商务系统分析的思路是______ 、从静到动、去伪存真、______ 。(本题答案必须按顺序)
进行电子商务系统的体系结构设计就是要确定电子商务系统的组成及______ 。
给定程序的片断如下,用户在浏览器地址栏中键入正确的请求URL并回车后,在控制台上显示的结果是( ) public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException{ System.out.println(“get”); } Public void doPost(HttpServletRequest request,HttpServletResponse response) Throws ServletException,IOException{ System.out.println(“post”); }
A. get
B. post
C. get post
D. post get
假设本地服务器Tomcat(端口号8080)中名为helloapp的Web应用有一HelloServlet类,它位于cn.edu.cdut包下,它在web.xml文件中的配置如下: HelloServlet cn.edu.cdut.HelloServlet HelloServlet /hello 那么在浏览器端访问HelloServlet的URL是( )
A. http://localhost:8080/hello
B. http://localhost:8080/helloapp/HelloServlet
C. http://localhost:8080/helloapp/cn/edu/cdut/hello
D. http://localhost:8080/helloapp/hello