- 浏览: 652787 次
- 性别:
- 来自: 淮安
最新评论
-
hymzjsw:
python 变量命名规范 -
IWSo:
...
mysql #1170错误(42000) BLOB/TEXT Column Used in Key Specification Without a Key Le -
wl59138528:
由于Python臭名昭著的GIL问题,OpenERP 6.1以 ...
OpenERP 部署环境使用说明 -
greybeard:
xiaoyao3857 写道怎么看着一大堆,似乎中间有些东西重 ...
python 变量命名规范 -
xiaoyao3857:
怎么看着一大堆,似乎中间有些东西重复说了吧
python 变量命名规范
文章列表
"""""""""""""""""""""""""""""""""""""""""""""""""" ...
"""""""""""""""""""""""""""""""""""""""""""""""""" ...
"""""""""""""""""""""""""""""""""""""""""""""""""" ...
Windows7下VNC远程连接rhel6.1
1. VNC简介:
VNC(Virtual Network Computing)是一套由AT&T实验室所开发的可操控远程的计算机的软件,其采用了GPL授权条款,
任何人都可免费取得该软件。
VNC主要由两个部分组成:
VNC server和VNC viewer。
用户需先将VNC server安装在被控端的计算机上后,才能在主控端执行VNC viewer控制被控端。
vnc的主要工作原理是在服务器端运行 vncserver服务,然后在客户端就可以远程连接服务器端桌面了。
2. 安装(Ser ...
a different object with the same identifier value was already associated with the session错误
请千万不要忘记了要在do里面加上equal和hashcode方法。
public long getByUser(final TimesheetDO timesheetDo, final Integer userId) {
long sum = 0;
boolean isExist = false; //用于分别是否为新添加的还是更新
boolean flag = false;
@SuppressWarnings("unchecked")
final List<TimesheetDO> list = getHibernateTemplate().find(
" ...
我的debian 6(squeeze)源列表
- 博客分类:
- debian
转自:http://coolwinding.blog.163.com/blog/static/112240939201011294543291/
# 对于不了解sources.list文本格式的debian新手,
# 这里有一篇很好的文章:http://blog.chinaunix.net/u1/35320/showart_468461.html
# 如果你是找debian 5的源列表,就请参考另一篇文章:
# "我的debian 5(lenny)源列表"
# 下面开始……
# cd/dvd的源
# 关于Debian开机自动挂载ISO,以本地ISO作为更新源(通过fst ...
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://j ...
对于Eclipse要求:
EclipseEE
新件项目:需要建成:dynamic web project
在WEB-INF/lib下需要的jar包:
整个项目的目录结构:
源码:
IDao.java
package com.yy.action;
public interface IDao {
public String sayHello(String name);
}
IService.java
package com.yy.service;
public interface IService {
pu ...
hibernate相对于spring配置还是略显繁琐的:
对于Eclipse要求:
EclipseEE
数据库,我选用的是
mysql
新件项目:需要建成:dynamic web project
在WEB-INF/lib下需要的jar包:
整个项目的目录结构:
源码:
HelloWorld.java
package com.yy.hello;
import org.hibernate.Session;
import org.hibernate.Transactio ...
1.
Exception in thread "main" java.lang.NoClassDefFoundError: javax/persistence/EntityListeners
at org.hibernate.cfg.annotations.reflection.JPAMetadataProvider.getDefaults(JPAMetadataProvider.java:96)
at org.hibernate.annotations.common.reflection.java.JavaReflectionManager.getDefaults(Ja ...
当遇到:
log4j:WARN Please initialize the log4j system properly.
log4j:WARN No appenders could be found for logger (org.apache.commons.beanutils.ConvertUtils).
则在WEB-INF/classes文件夹下添加:log4j.properties
内容如下:
log4j.rootLogger=DEBUG,stdout,R
log4j.logger.org=ERROR, A1
log4j.logger.com.gc.action=DEBU ...
摘自:Pro Wicket
Modify the label User Name to User Name1 in Login.html and refresh the page; you will notice
the template now displays User Name1. Essentially, any change to the template is reflected in
the subsequent page access. Wicket checks for any changes to a template file and loads the
new one ...
转载:http://iamzhangxiaochuan.blog.163.com/blog/static/1818142802011225101621401/
设置<input type="text">的默认值最基本的就是用value设置默认值,例如<input type="text" value="默认值">。但是如果想让默认值在鼠标点击的时候消失,那么就要用js去实现动态的效果,例如<input name="textfield" type="text" valu ...
Java文件:
add(new RequiredMaxLengthTextField("name", new PropertyModel<String>(getData(), "name")).add(new AbstractValidator<String>() {
@Override
protected void onValidate(IValidatable<String> validatable)
{
final String groupname = ...