tomcat 9 cookie中不能用","作为分隔符,会报IllegalArgumentException异常,如果有和我出现一样错误的,把分隔符换成"#"即可。
2017-10-27
最赞回答 / Queen丶Star
myecilpse多做了几步, 你自己在eclipse中创建一个Dynamic Web Project 就行了,自己在创建一个index.jsp,一样的~
2017-10-26
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.xhtml</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.xhtml</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
2017-10-26
静态页面与动态页面:静态页面是纯前端页面,内容写死在代码中,使用HTML/CSS/JS编写;动态页面中的内容是通过程序动态显示的,涉及到数据库技术和后端语言,
2017-10-26
应用程序的演变:桌面端 -> Web端 -> 移动端 -> 人工智能大数据
Java Web,是用Java技术来解决相关Web端的技术总和。Web包括:Web服务器和Web客户端两部分。Java在客户端的应用有Java Applet,不过使用得很少,Java在服务器端的应用非常的丰富,比如Servlet、JSP和第三方框架等等。
Java Web,是用Java技术来解决相关Web端的技术总和。Web包括:Web服务器和Web客户端两部分。Java在客户端的应用有Java Applet,不过使用得很少,Java在服务器端的应用非常的丰富,比如Servlet、JSP和第三方框架等等。
2017-10-26