- 浏览: 499154 次
- 性别:
- 来自: 北京
最新评论
-
springdata_spring:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
maven archetype:generate 的进一步理解 -
springaop_springmvc:
apache lucene开源框架demo使用实例教程源代码下 ...
lucene 使用教程<转> -
springmvc-freemarker:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
maven 简单实用教程 -
nich002:
zealot 写道顶,推荐maven开发过程系列 大家不要点这 ...
maven 简单实用教程 -
刘宇斌:
您好 有个问题想请教您一下 您这个是通过jdbc连接的,如何 ...
云计算实战 (海量日志管理)hive -- hive + hiveclient (hive 客户端)
文章列表
用sudo时提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的用户名,也就是你的用户名没有权限使用sudo,我们只要修改一下/etc/sudoers文件就行了。下面是修改方 法:
1)进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。(当然,你也可以直接用root用)
2)添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。
3)编辑/etc/sudoers文件。 ...
//Printer接口
interface IPrinter {
//接口printByString方法声明
public void printByString(String str);
}
//MyPrinter实现Printer接口
class MyPrinter implements IPrinter {
public void printByString(String str) {
System.out.println(str);
}
}
//IPrinter对象工厂,用于创建实现接口的类对象
class PrinterFacto ...
- 2009-03-25 15:01
- 浏览 1037
- 评论(0)
--------------------1----------------------
exception is org.springframework.beans.NotWritablePropertyException:
Invalid property 'sessionFactory' of bean class [com.actions.ProvinceAction]: Bean property
'sessionFactory' is not writable or has an invalid setter method. Does the para
meter type of ...
- 2009-03-24 11:34
- 浏览 1281
- 评论(0)