2017年7月27日

Servlet

摘要: 1. 什么是Servlet? Servlet是服务器端的一个小应用程序。 Servlet通过HTTP接收和响应来自Web客户端的请求。 1.1 如何编写一个Servlet程序 a.写一个Java类,实现Servlet接口 b.修改web.xml,给Servlet提供一个可访问的URI地址 创建一个S 阅读全文

posted @ 2017-07-27 17:21 艺海蓝帆 阅读(110) 评论(0) 推荐(0)

2017年7月24日

创建表空间、用户

摘要: 1.查看当前的数据库文件一般都是放在哪里的: select name from v$datafile ; 2.创建数据库表空间 语法:create tablespace 表空间名 datafile '对应文件名' size 大小; 示例:create tablespace employee data 阅读全文

posted @ 2017-07-24 17:00 艺海蓝帆 阅读(129) 评论(0) 推荐(0)

导航