- 浏览: 7956 次
- 性别:
- 来自: 重庆
最新评论
文章列表
系统表
dba_data_files
dba_users
user_tables
user_tab_cols
user_views
user_updatable_columns 视图操作数据限制
user_constraints 数据字典,约束
user_types 对象表
user_type_attrs
user_mviews 物化视图
user_cons_columns
表空间
create tablespace 表空间名 datafile = '路径.dbf' size 50M autoextend on next 10M maxsize 100M
alert database def ...
更改会话 Cookie 标识的名称
- 博客分类:
- 服务
缺省情况下,IBM® Connections 的会话 Cookie 标识名为 JSESSIONID。WebSphere® Application Server 托管的其他产品通常使用与它们的会话 Cookie 相同的名称。如果 IBM HTTP Server 托管了多个 Web 服务器,那么您可能想更改其中一个 Web 服务器的 Cookie 名称,以免将用户从一个产品重定向到另一产品时丢失 Cookie。
过程
1.如果在 IBM WebSphere Application Server 单元中托管了多个产品,那么在缺省情况下,其他应用程序与 WebSphere Application Se ...
Sitemesh-创建一致的页面布局和外观
- 博客分类:
- 架构
初步使用资料
http://www.cnblogs.com/mailingfeng/archive/2011/12/21/2296105.html
1、Sitemesh3.0的配置文件
跟2.X版本不同,siteMesh简化了配置,这里只需要在/WEB-INF目录下建立一个sitemesh3.xml文件
2、搭建SiteMesh3环境
下载sitemesh3.0
将其中disk文件夹下的sitemesh-3.0-alpha-2.jar导入/WEB-INF/lib目录下
3、建立装饰页(decorator.jsp)
4、web.xml的配置
这里不再需要像2.X版本去配置tagli ...
1、android:password is deprecated: Use inputType instead
将
android:password="true"
更改为:
android:inputType="textPassword"
2、missing contentdescription attribute on image
ADT 16.0的新特性,在一些没有文本显示的控件里,如imageView和imageButton等,ADT会提示你定义一个android:contentDescription属性
3、android弹窗
http:// ...
Concurrent.Thread-full-20090713.js
Concurrent.Thread.create(方法名,方法参数,方法参数);
insert into sup_sys_config select * from sup_sys_config as
of timestamp to_timestamp('2012-09-13 21:06:00','yyyy-mm-dd hh24:mi:ss') ;
javascript:window.open('','_self');window.close();
读取各种编码的text文件
- 博客分类:
- java
public static void main(String[] args) throws IOException {
File file = new File("d:/java思考Unicode big endian.txt");
InputStream inputStream = new FileInputStream(file);
byte[] head = new byte[3];
inputStream.read(head);
String code = "gb2312" ...
jsp中获取Java中的值
<%= %>
java中获取jsp中的值
<c:forEach var="survey" items="${list}">
<bean:define id="sss_choice" name="survey" property="SSS_CHOICE" type="String"></bean:define>
<%
String str = sss_choice;
String ...
var ch=(document.documentElement.scrollTop+document.documentElement.clientHeight-box.offsetHeight);
var cw=(document.documentElement.scrollLeft+document.documentElement.clientWidth-box.offsetWidth);
var top=parseInt(box.style.top);
var left=parseInt(box.style.left);
ch=页面高度
cw=页面宽度
top=id为box的div ...