- 浏览: 590867 次
- 性别:
- 来自: 深圳
最新评论
-
明明如月:
这个方法不错
解决Failed to execute goal org.apache.maven.plugins -
srhlwdamon:
可是我的为什么解决不了。。。。。。。。。!!
解决Failed to execute goal org.apache.maven.plugins -
di1984HIT:
写的不错。
Memcached 在window下部署和测试示例 -
只为学英语:
正解,十分感谢
解决Failed to execute goal org.apache.maven.plugins -
落雪封:
谢谢,解决了,少导入jar包了
Spring MVC 的json问题(406 Not Acceptable)
文章列表
1.需求
2.背景信息
3.我的问题
4.我的代码
[code=Java]
[/code]
5.帖尾
小生才学疏浅
,请高手指教
,临帖涕零,不知所言
, 谢谢
~
!
accept说明:
<input type="file" id="avatar" name="avatar" class="{validate:{required:true,accept:true}}" />
accept接受的是:image (png, jpg, jpeg, gif)
<input type="file" id="cv" name="cv" class="{validate:{required:tr ...
//code to hide topic selection, disable for demo
var newsletter = $("#newsletter");
// newsletter topics are optional, hide at first
var inital = newsletter.is(":checked");
alert(inital)
var topics = $("#newsletter_topics")[inital ? "removeClass" : & ...
配置过程:
1.Tomcat 6.0\conf\context.xml
<Resource name="jdbc/db_school" auth="Container" type="javax.sql.DataSource"
maxActive="50" maxIdle="30" maxWait="10000" logAbandoned="true"
username="root" password=&q ...
1.运行
2.输入:register
3.定位到:HKEY_CLASSES_ROOT\.htm,设置默认为:htmlfile
定位到:HKEY_CLASSES_ROOT\.html,设置默认为:htmlfile
4.定位到:HKEY_CLASSES_ROOT\htmlfile\ShellEx\IconHandler
设置默认为:{420422062D85-11D3-8CFF-005004838597}
5.定位到:HKEY_CLASSES_ROOT\CLSID\{42042206-2D85-11D3-8CFF-00500483 ...
PowerDesigner 15下载地址:http://download.sybase.com/eval/PowerDesigner/PowerDesigner15_Evaluation.exe
破解文件:http://www.ali8ba.com/upfiles/pdflm15.rar
PowerDesigner15的破解方法:
把pdflm15.rar的pdflm15.dll 覆盖安装文件目录下的文件
[转:http://chenlinbo.iteye.com/blog/335677]
QBC
查询:
通过使用
Hibernate
提供的
Query By Criteria API
来查询对象,这种
API
封装了
SQL
语句的动态拼装,对查询提供了更加面向对象的功能接口。我们看下面的示例程序:
Criteria criteria=session.createCriteria(User.class);
criteria.add(Expression.eq(“name”,”zx”));
criteria.add(E ...
1.实体:
public class Order {
private int id;
private Date orderDate;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Date getOrderDate() {
return orderDate;
}
public void setOrderDate(Date orderDate) {
this.orderDate = orderDate;
}
...
jQuery.validity表单校验
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content=&qu ...
Session session = HibernateSessionFactory.getSession();
Transaction transaction=null;
try {
transaction = session.beginTransaction();
transaction.begin();
//操作
transaction.commit();
} catch (Exception e) {
//日志
if(transaction!=null){
transaction.rollback();
...
/**
* Person类中有一个属性指向另外一个实体,但是另外一个实体没有属性指向Person,所以单向
* 由于Person表中是主键属性关联,所以主键,它的主键id是根据Address的主键id而来,因此不能使用代理主键
* @author Macrotea
*
*/
public class Person {
private int id;
private String name;
private Address address;
public Address getAddress() {
return address;
}
pu ...
/**
* Person类中有一个属性指向另外一个实体,但是另外一个实体没有属性指向Person,所以单向
* 由于Person表中是非主键属性关联,所以外键
* @author Macrotea
*
*/
@Entity
public class Person {
private int id;
private String name;
private Address address;
@OneToOne
@JoinColumn(name = "addressId")
public Address getAddress ...
1.一对一
单向(主键,外键)
双向(主键,外键)
中间表(不重要)
2.一对多
单向
双向 ----|
3.多对一
单向
双向 ----|
4.多对多
单向
双向