jsp的九大内置对象:
5个常用对象: out(输出) request(请求) response(响应) session(会话) application(应用)
4个不常用: page pageContext exception config
5个常用对象: out(输出) request(请求) response(响应) session(会话) application(应用)
4个不常用: page pageContext exception config
2015-09-10
tomcat登录XDB登录问题出现原因:系统之前安装过oracle服务器,占用8080端口。
解决方案:先关闭tomcat,打开tomcat安装目录下的conf目录,打开它找到server.xml。找到
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
将8080改为8088,然后打开http://localhost:8088/即可
解决方案:先关闭tomcat,打开tomcat安装目录下的conf目录,打开它找到server.xml。找到
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
将8080改为8088,然后打开http://localhost:8088/即可
2015-09-08