- 浏览: 35797 次
- 性别:
- 来自: 北京
最新评论
文章列表
-a file exists.
-b file exists and is a block special file.
-c file exists and is a character special file.
-d file exists and is a directory.
-e file exists (just the same as -a).
-f file exists and is a regular file.
-g file exists and has its setgid(2) bit set.
-G file exists and has the same grou ...
Alpha:是内部测试版,一般不向外部发布,会有很多Bug.一般只有测试人员使用。
Beta:也是测试版,这个阶段的版本会一直加入新的功能。在Alpha版之后推出。
RC:(Release Candidate) 顾名思义么 ! 用在软件上就是候选版本。系统平台 ...
通过DefaultListableBeanFactory 这个类可以了解到:
1 spring 使用 ConcurrentHashMap 来存储bean 。
2 两个不同的配置文件中,重名的bean, 后者会覆盖前者 。
代码段:
synchronized (this.beanDefinitionMap) {
Object oldBeanDefinition = this.beanDefinitionMap.get(beanName);
if (oldBeanDefinition != null) {
if (!this.allowBeanDefinitionOve ...
一 内容:
1 最小化http请求
最终用户的80%时间都花在前端,比如下载图片,scripts,flash等。所需减少展示一个页面所需要的http请求是快速展示页面的关键。
一种方式是简化页面设计。在此基础上:
1)压缩文件:将所有的sc ...
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Stack;
public class Test {
private static FileInputStream fis = null;
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generate ...
select e.realname as 姓名,ROUND(TO_NUMBER(TO_DATE(ee.endtime,'yyyy-mm-dd hh24:mi:ss') - TO_DATE(ee.starttime,'yyyy-mm-dd hh24:mi:ss')) * 24 * 60) as 用时 from examinee e right join examexaminee ee on e.id=ee.examineeid where ee.examid='ff80808129537c1101295a055edf29e0' and ROUND(TO_NUMBER(TO_DATE(ee.end ...
一般在many-to-one中出现 原因是关联的数据丢失 将many-to-one设置 not-found="ignore" 即可。
1。不要使用autowiring
Spring可以通过类的自省来自动绑定其依赖部分,使得你不必明确指明bean的属性和构造器。Bean的属性可以通过属性名称或类型匹配来实现自动绑定。构造器通过类型匹配来实现自动绑定。你甚至可以指定自动检测自动绑定模式,它可以引导Spring选择一种适当的运行机制。先来看看下面的一个例子:
class="com.lizjason.spring.OrderService" autowire="byName"/>
OrderService类的属性名在容器中用于匹配bean实 ...
- 2009-12-04 15:36
- 浏览 873
- 评论(0)
1, 尽量不要使用+号来连接字符串。
2, 对小数据int的Integer封装,尽量的使用Integer.valueOf()创建,而不要使用new来创建。因为Integer类缓存了从-128到256个 状态的Integer。
3, 对Boolean类,要用valueOf()或使用Boolean.TRUE或Boolean.FALSE来创 ...
- 2009-12-04 15:34
- 浏览 828
- 评论(0)
1 单表,只有int varchar字段
2 使用系统的自增长字段
3 使用系统的日期字段
4 使用BLOB和CLOB字段
5 制作1:1的关联
6 制作1:n的关联
7 制作n: n的关联
8 尝试lazy对程序的影响
- 2009-12-02 10:46
- 浏览 874
- 评论(0)
@ManyToMany : @JoinTable
@ManyToOne : @JoinColumn
- 2009-11-17 15:42
- 浏览 718
- 评论(0)
@Entity
Specifies that the class is an entity. This annotation is applied to the entity class.
----------------------------------------------------------------------
@Table
This annotation specifies the primary table for the annotated entity. Additional tables may be specified using SecondaryTable o ...
- 2009-11-17 15:23
- 浏览 1012
- 评论(0)
FetchType.EAGER
- 博客分类:
- Java
@ManyToOne(cascade = { CascadeType.PERSIST, CascadeType.MERGE }, fetch = FetchType.EAGER)
会使用join来取数据
- 2009-11-15 00:05
- 浏览 2097
- 评论(0)
org.hibernate.LazyInitializationException:
one-to-many 或 many-to-many 主控方加载被控方对象集合的时候 lazy设置成了true 延迟加载 导致主控对象不能初始化。解决办法:lazy设置为false。
- 2009-11-13 14:56
- 浏览 905
- 评论(0)