- 浏览: 83511 次
- 性别:
- 来自: 重庆
最新评论
-
lihua2008love:
为什么报<pre name="code&quo ...
图片加水印JAVA实现 -
dearhwj:
我整理了一些我常用的Eclipse插件http://www.d ...
eclipse 常用插件 -
javay:
谢谢。
图片加水印JAVA实现 -
hailanc1108:
不错,谢谢啦.
图片加水印JAVA实现 -
elf8848:
我看了, 很好, 但水印不是半透明的
图片加水印JAVA实现
文章列表
复合查询主要是处理,具有关联关系的两个实体怎样进行关联查询,比如
User
实体对象与
Addres
实体对象具有一对多的关联关系,我们可以如下构造符合查询:
Criteria criteria=session.createCriteria(User.class);
Criteria addcriteria=criteria.createCriteria(“addresses”);(1)
addcriteria.add(Express.like(“address”,”%tianjin%”));
...
- 2009-05-31 00:47
- 浏览 1398
- 评论(0)
package cn.com.oneslife;
import java.util.HashMap;
import java.util.Map;
import org.apache.struts2.interceptor.SessionAware;
public class AjaxAction implements SessionAware{
private static final long serialVersionUID = 555146237439856288L;
protected static final String SUCCESS = ...
- 2009-05-19 19:38
- 浏览 922
- 评论(0)
(function(){
//ADS命名空间
if(!window.ADS){ window['ADS'] = {}}
function isCompatible(other){
if(other == false
|| !Array.prototype.push
|| !Object.hasOwnProperty
|| !document.createElement
|| !document.getElementsByTagName){
return false;
}
return true;
};
...
- 2009-05-14 21:30
- 浏览 965
- 评论(0)
运行,
sudo apt-get install wesnoth-all
输入你自己用户密码
慢长的等待就可以了,要看你的速度如何了
安装完后就不需要什么设置了,但是有一个语言问题,你不弄好就运行后是个乱码菜单,
所以你得作如下安排
sudo apt-get install ttf-arphic-uming
cd /usr/share/games/wesnoth/fonts
sudo mv sazanami-gothic.ttf sazanami-gothic.ttf ...
- 2009-05-10 23:33
- 浏览 1954
- 评论(0)
install the latest jdk1.6 in ubuntu
I just dont know how to do it?
when i type java, the terminal will give me the answer like this
sun-jdk or open-jdk,
I do not remember now.
First, if you want to install the latest version of java. go to the sun's official site
now, I download the jdk-6u7-lin ...
- 2009-05-09 00:47
- 浏览 1491
- 评论(0)
一、如何安装?
在9.04默认的源中可以安装ibus,和ibus-table,但是如果你是使用拼音的话这样还不够,还需要加入ibus-pinyin,但是在默认的源中是没有的。
加入:
deb http://ppa.launchpad.net/ibus-dev/ppa/ubuntu jaunty main
这个源即可
sudo apt-get update
更新一下。
然后安装ibus
sudo apt-get install ibus ibus-table ibus-pinyin python-ibus ibus-qt4 ibus-gtk
把这些都装上,前面的三个是必须的
p ...
- 2009-05-08 22:33
- 浏览 4635
- 评论(0)
md5sum file.iso > file.iso.md5
所有版本CD镜像的md5值如下:
c564ae16dffb51a922aef74a07250473 *ubuntu-9.04-alternate-i386.iso
66fa77789c7b8ff63130e5d5a272d67b *ubuntu-9.04-desktop-i386.iso
3b5e9861910463374bb0d4ba9025bbb1 *ubuntu-9.04-alternate-amd64.iso
cace6ea9dde8dc158174e345aabe3fae *ubuntu-9.04-deskt ...
- 2009-05-08 12:16
- 浏览 1915
- 评论(0)
'查看软件xxx安装内容 dpkg -L xxx'
'查找软件库中的软件 apt-cache search 正则表达式'
'查找软件库中的软件 aptitude search 软件包'
'查找文件属于哪个包 dpkg -S filename'
'查找文件属于哪个包 apt-file search filename'
'查询软件xxx ...
- 2009-05-05 18:31
- 浏览 1199
- 评论(0)
K3b: apt://k3b KDE下的刻录软件(系统增强)
Opencity: apt://opencity 模拟城市(游戏类)
EVA: apt://eva EVA(即时通信,类QQ)
Emesene: apt://emesene 即时通信,类MSN
Inkscape: apt://inkscape 矢量绘图软件,能打开AI,但不能打开CDR,这令我很郁闷,不然我就可以全部用ubuntu而不必老跑到win下转换cdr格式了。
Amule: [url]apt://amule mule[/url] 骡子,下载软件
OpenJDK: apt://openjdk-6-jdk JAVA 编 ...
- 2009-05-03 05:02
- 浏览 1026
- 评论(0)
配置flashgot+axel
- 博客分类:
- ubuntu
1。先用sudo apt-get install alex下载
2。按照下图配置flashgot
- 2009-05-03 03:00
- 浏览 893
- 评论(0)
SVN
Explain: 版本控制插件
Home Page: http://subclipse.tigris.org/
Eclipse update site URL: http://subclipse.tigris.org/update_1.6.x
Spket
Explain: javascript插件
Home Page: http://www.spket.com/
Eclipse update site URL: http://www.spket.com/update/
破解补丁:spket-1.6.16.jar
Spring IDE
Explain: Spring插件,有提示功能
H ...
- 2009-05-03 01:27
- 浏览 1561
- 评论(1)
1、安装Subversion
sudo apt-get install subversion2、建立存储仓库
sudo mkdir /var/svnroot
cd /var/svnroot
生成项目
sudo svnadmin create projectname
添加密码验证:
sudo gedit /var/svnroot/projectname
/conf/svnserve.conf
去掉password-db = passwd 前面的#号注释。
修改passwd文件:
sudo nano /var/svnroot/projectname
/c ...
- 2009-05-02 20:10
- 浏览 3019
- 评论(0)
package cn.com.oneslife;
import junit.framework.TestCase;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.junit.AfterClass;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
impor ...
- 2009-04-22 03:17
- 浏览 1346
- 评论(0)
1. web.xml 配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
<!--classpath*:/spring-config/applicationContext.xml-->
</param-value>
...
- 2009-04-21 19:18
- 浏览 1264
- 评论(0)
hibernate提供了hibernate annotation扩展包,它是用来替换复杂的hbm.xml文件,使得hibernate程序开发大大简化
1. @Id 声明属性为主键
2. @GeneratedValue表示主键是自动生成策略,一般该注释和 @Id 一起使用
3. @Entity 任何 hibernte 映射对象都要有 ...
- 2009-04-21 18:14
- 浏览 999
- 评论(0)