我在GlassFish终端上收到以下警告,同时部署在实体中具有延迟抓取的应用程序,
警告:恢复
OneToOne
或ManyToOne
上的延迟设置 实体类[zoneTable]
的属性[class entity.ZoneCharge]
因为编织没有启用或没有发生。
表示项目中列出的任何实体。
我的persistence.xml
文件类似于以下内容。
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence"
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="Project-ejbPU" transaction-type="JTA">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/pool</jta-data-source>
<class>entity.ZoneTable</class>
<!--Other classes-->
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="eclipselink.weaving" value="static"/>
<property name="eclipselink.target-server" value="SunAS9"/>
<property name="eclipselink.logging.parameters" value="true"/>
<property name="eclipselink.logging.level.sql" value="FINEST"/>
<property name="eclipselink.logging.level" value="FINEST" />
<property name="eclipselink.logging.level" value="WARNING"/>
<property name="eclipselink.logging.level.cache" value="FINEST"/>
</properties>
</persistence-unit>
</persistence>
ZoneTable
类看起来像,
@Entity
@Table(name = "zone_table", catalog = "projectdb", schema = "")
public class ZoneTable implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "zone_id")
private Long zoneId;
@Column(name = "zone_name")
private String zoneName;
@OneToMany(mappedBy = "zoneTable", fetch = FetchType.LAZY)
private Set<ZoneCharge> zoneChargeSet;
//Setters and getters.
}
这里懒惰的提取工作甚至可以用于远程EJB,但我认为,由于上述警告,它被认为是渴望的。
如何启用编织(或其他方式)以避免此警告?
当我按照提到here,
输入此命令时java org.eclipse.persistence.tools.weaving.jpa.StaticWeave
在命令行上,我收到以下错误。
错误:无法找到或加载主classorg.eclipse.persistence.tools.weaving.jpa.StaticWeave
有什么方法可以克服这种警告?
答案 0 :(得分:1)
在尝试运行该类进行静态编织时,请确保在类路径上包含带有org.eclipse.persistence.tools.weaving.jpa.StaticWeave
的EclipseLink.jar。
但如果您在GlassFish 4中运行,则不需要使用静态编织。删除<property name="eclipselink.weaving" value="static"/>
属性并尝试再次部署。此属性表示您的类已经静态增强,因此不应进行动态编织。由于它们没有得到增强,懒惰的1:1和M:1将默认为急切。