- 浏览: 273904 次
- 性别:
- 来自: 杭州
最新评论
-
nizuiku:
启动时,需要把maven依赖包放入lib中
java.lang.ClassNotFoundException: org.springframework.web.util.Log4jConfigListen -
ron.luo:
重新clean就行了。
java.lang.ClassNotFoundException: org.springframework.web.util.Log4jConfigListen -
红尘默岩:
帮大忙了,谢谢
ExtJS获取当前对象所在容器 -
v韧竹v:
feihuale 写道com.springsource.org ...
java.lang.ClassNotFoundException: org.springframework.web.util.Log4jConfigListen -
lhl5230:
谢谢,很有用。。。
Oracle express启用scott用户
文章列表
学到一条查看Oracle版本号的命令,先共享了
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Pr ...
现在有这么一个不符合标准C的程序,我需要看看起警告提示功能
#include <stdio.h>
void main(void)
{
long long int var = 1;
printf("It is not standard C code\n");
}
直接不提示警告信息的情况编译结果如下
[Xredman@localhost demo]$ gcc bad.c -o bad
bad.c: In function ‘main’:
bad.c:4: 警告:‘main’ 的返回类型不是 ‘int ...
以前一直用gcc --v来查看版本信息
[Xredman@localhost demo]$ gcc --v
使用内建 specs。
目标:i386-redhat-linux
配置为:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
--enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib
--enable-__cxa_atexit --disable-libunwind ...
在使用GCC编译程序时,其编译过程可以分为4个阶段:预处理(Pre-Processing) -> 编译(Compling) -> 汇编(Assembling) -> 连接(Linking) .
程序员完全可以根据自己的需要让gcc在编译的任何一个阶段结束,检查活使用编译起在该阶段输出的信息,或者对其生成的二进制文件进行控制。
我想通过一个Hello World程序对GCC的编译过程有进一步的认识。
[Xredman@localhost demo]$ cat test.c
#include <stdio.h>
int main(void)
...
今天准备在Linux下增加一个用户,用useradd命令居然提示不存在,而man一下又是存在的.
[root@localhost Xredman]# useradd wanghui
bash: useradd: command not found
用ls -l /usr/sbin命令查看
-rwxr-x--- 1 root root 74544 03-31 13:41 useradd
查看一下PATH吧
[root@localhost sbin]# echo $PATH
/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/bi ...
oracle中查看用户权限
1.查看所有用户:
select * from dba_users;
select * from all_users;
select * from user_users;
2.查看用户或角色系统权限:
select * from dba_sys_privs;
select * from user_sys_privs;
3.查看用户对象权限:
select * from dba_tab_privs;
select * from all_tab_privs;
select * from user_tab_privs;
...
在上一篇文章中安装了Oracle Experess数据库,可以用scott/tigger竟然不能登录。当然用system和sys可以登录数据库。查资料得到消息,在Oracle 10g或以上版本中,出于安全考虑,所有Oracle的默认用户,包括scott用户都被锁住。要先以SYSTEM用户登录,然后将scott用户解锁。
SQL*Plus: Release 10.2.0.1.0 - Production on 星期日 6月 27 21:01:41 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> ...
想写一篇文章记录一下本人在CentOS上安装Oracle Express的经历,也作为自己的一点小小积累吧。
当然,首先需要从Oracle官网下载Oracle的express版本了,我下载的是oracle-xe-univ- 10.2.0.1-1.0.i386.rpm,下载是需要有Oracle的帐号,这个只要自己注册就可以了.安装过程如下
[Xredman@localhost ~]$ su//安装时需要root用户权限口令:[root@localhost Xredman]# rpm -ivh oracle-xe-univ-10.2.0.1-1.0.i386.rpm //运行安装 ...
更新网址:http://www.spket.com/update/
Spket IDE is free for non-commercial use.
今天在重新配置Acegi时,出现以上错误。此原因应该是找不到applicationContext.xml资源文件引起。可以偶命名写正确了呀。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
后来我总算觉悟了,原来一直用struts启动spring,现在偶没用stru ...
像使用JPA,想使用Annotation配置Hibernate,然后碰到了一系列问题。一定要有hibernate-jpa-2.0-api-1.0.0.Final.jar这个jar 包否则就会出javax.persistence.Entity异常。
hibernate-3.2.5.GA(hibernate-3.3.2.GA) hibernate-annotations-3.3.0.GA(hibernate-annotations-3.4.0.GA)ejb3-persistence hibernate-commons-annotations-3.0.0.GA 注意的是在hiber ...
<html>
<head>
<title>no javascript</title>
</head>
<body>
<noscript>
<div
style="position: absolute; z-index: 100000; height: 2046px;
top: 0px; left: 0px; width: 100%; background: white; text-align: center;">
...
Spring整合Hibernate时出现如下错误
严重: Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/classes/applicationContext-hibernate.xml]: Instantiation of bean failed; nested exception i ...