假设在helloapp应用中有一个hello.jsp,它的文件路径如下
举一反三
- 在helloapp应用中有一个hello.jsp,它的文件路径如下:%JAVA_HOME%/webapps/helloapp/hello/hello.jsp,那么在浏览器端访问hello.jsp的URL是
- hello.jsp文件的路径是WebRoot/hello/hello.jsp, 则在应用helloapp中,浏览器端访问hello.jsp的URL是 ()
- 假设在helloapp应用中有一个HelloServet.java类,它位于com.itheima包中,那么这个类的.class文件的存放路径应该是什么?()
- 【单选题】假设在helloapp应用工程中有一个HelloServlet类,它在web.xml文件中的配置如下: HelloServlet org.java.thinker.HelloServlet HelloServlet /hello 那么在浏览器端访问HelloServlet的URL是什么? () A. http://localhost:8080/HelloServlet B. http://localhost:8080/helloapp/HelloServlet C. http://localhost:8080/helloapp/org/javathinker/hello D. http://localhost:8080/helloapp/hello
- 假设在helloapp应用中有一个HelloServlet类,它在web.xml文件中的配置如下: HelloServlet </servlet-name> org.javathinker.HelloServlet</servlet-class> </servlet> HelloServlet </servlet-name> /hello</url-pattern> </servlet-mapping> 那么在浏览器端访问HelloServlet的URL是