zhazi 最近的时间轴更新
zhazi

zhazi

V2EX 第 208341 号会员,加入于 2016-12-29 23:03:16 +08:00
根据 zhazi 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
zhazi 最近回复了
水平差,冤框架。让上代码也不上,block
@XiaoJiang9527 晒代码,别虚空打靶
/*
* Copyright (c) 2008, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/

// Contributors:
// Linda DeMichiel - 2.1
// Linda DeMichiel - 2.0


package javax.persistence;

/**
* Defines strategies for fetching data from the database.
* The <code>EAGER</code> strategy is a requirement on the persistence
* provider runtime that data must be eagerly fetched. The
* <code>LAZY</code> strategy is a hint to the persistence provider
* runtime that data should be fetched lazily when it is
* first accessed. The implementation is permitted to eagerly
* fetch data for which the <code>LAZY</code> strategy hint has been
* specified.
*
* <pre>
* Example:
* &#064;Basic(fetch=LAZY)
* protected String getName() { return name; }
* </pre>
*
* @see Basic
* @see ElementCollection
* @see ManyToMany
* @see OneToMany
* @see ManyToOne
* @see OneToOne
* @since 1.0
*/
public enum FetchType {

/** Defines that data can be lazily fetched. */
LAZY,

/** Defines that data must be eagerly fetched. */
EAGER
}

不看文档,不查手册的吐槽我不是很认可
求一个码用
63 天前
回复了 firhome 创建的主题 Windows 如何让 windows 命令行如 mac 般丝滑?
windows 的盘符和目录转义符让我完全没兴趣用它的 terminal
63 天前
回复了 godruoyi 创建的主题 PHP 为什么 Laravel 这么优秀
我喜欢 Laravel
不喜欢这篇文章。
兼听则明,偏信则暗,没有对比就说一个框架如何如何优雅优秀是不够客观的
63 天前
回复了 Canglin 创建的主题 Java 有没有什么推荐的 Java 书籍
像编码量比较少还是多实践吧,多写一些应用代码。多看官方 guide ,
找本整洁代码读读。
太深入了的体会不到,太肤浅的不如自己实践。
这个么一个小 kit 和整个 spring 生态做耦合,里面还塞了一个 hutool 的大杂烩,也没有测试
麻烦了,兄弟,你自己处理是管理员还是用户想给啥权限给啥权限,整个菜单表都给你
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5763 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 06:10 · PVG 14:10 · LAX 23:10 · JFK 02:10
Developed with CodeLauncher
♥ Do have faith in what you're doing.