gpt4 book ai didi

java - ValidationException异常描述: Cannot acquire data source [jdbc/MyDataBase]

转载 作者:行者123 更新时间:2023-12-01 09:37:16 31 4
gpt4 key购买 nike

我疯狂地用谷歌搜索,但我没有找到使用 java 持久性出了什么问题。

我正在使用 glassfish 4.1.1。 NetBeans 8.1。 Glassfish 与 netbeans 集成,服务器和 JDBC 资源都显示在 Windows-> 服务区域中。

持久性.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="testDB" transaction-type="JTA">
<jta-data-source>jdbc/MyDataBase</jta-data-source>
<class>person.Person</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
</persistence-unit>
</persistence>

连接池和资源的 GlassFish domain.xml 条目

<jdbc-resource pool-name="MyDataBase" object-type="system-all" jndi-name="jdbc/MyDataBase"></jdbc-resource>
<jdbc-connection-pool driver-classname="java.sql.Driver" ping="true" datasource-classname="org.postgresql.Driver" name="MyDataBase" res-type="java.sql.Driver">
<property name="URL" value="jdbc:postgresql://localhost:5432/testDB"></property>
<property name="connectionAttributes" value=";create=true"></property>
<property name="user" value="*****"></property>
<property name="password" value="****"></property>
<property name="portNumber" value="5432"></property>
<property name="databaseName" value="testDB"></property>
<property name="serverName" value="localhost"></property>
</jdbc-connection-pool>

Glassfish 管理 GUI 中的池 ping 正常,所以我很确定它就在那里。

我的 Java 对象:实体管理器类:

package person;

import javax.inject.Named;
import javax.enterprise.context.RequestScoped;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;

/**
*
* @author jameszeigler
*/
@Named(value = "personCreator")
@RequestScoped
public class PersonCreator {

private Person person;

/**
* Creates a new instance of PersonCreator
*/
public PersonCreator() {
}

public void setPersonValues(){
person = new Person();
person.setAge(10);
person.setFirstName("James");
person.setLastName("Zeigler");
}

public String getPersonValues(){
return "Test";
}

public void persistPerson(){
EntityManagerFactory emfactory = Persistence.createEntityManagerFactory( "testDB" );

EntityManager entitymanager = emfactory.createEntityManager( );
entitymanager.getTransaction( ).begin( );

setPersonValues();

entitymanager.persist( person );
entitymanager.getTransaction( ).commit( );

entitymanager.close( );
emfactory.close( );
}

}

和实体类:

package person;

import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

/**
*
* @author jameszeigler
*/
@Entity
public class Person implements Serializable {

// Data Members //
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(name="firstName")
private String firstName;
@Column(name="lastName")
private String lastName;
@Column(name="age")
private int age;


// Methods //
public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}

public void setFirstName(String firstName){
this.firstName = firstName;
}

public String getFirstName(){
return firstName;
}

public void setLastName(String lastName){
this.lastName = lastName;
}

public String getLastName(){
return lastName;
}

public void setAge(int age){
this.age = age;
}

public int getAge(){
return age;
}

@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}

@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof Person)) {
return false;
}
Person other = (Person) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}

@Override
public String toString() {
return "person.Person[ id=" + id + " ]";
}

}

我发誓这应该有效,但我在测试中遇到了异常(exception):

    javax.persistence.PersistenceException: Exception [EclipseLink-7060] (Eclipse Persistence Services - 2.6.1.v20150605-31e8258): 
org.eclipse.persistence.exceptions.ValidationException Exception Description:
Cannot acquire data source [jdbc/MyDataBase]. Internal Exception: javax.naming.NamingException: Lookup failed for 'jdbc/MyDataBase' in SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory,
java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming} [Root exception is javax.naming.NameNotFoundException: MyDataBase not found]

服务器将此作为资源,我做错了吗?我想我可能需要建立连接而不是创建实体管理器?当前没有其他服务器正在运行。我觉得我错过了一些非常简单的东西,但我不确定它是什么。

最佳答案

必须回到这个。我似乎通过从 Galssfish 4.1 切换到 Payara 解决了这个问题。 Glassfish 4.1 显然存在 JDBC 资源和连接池问题。而且我的 NetBeans 配置完全错误。 NetBeans 附带了自己的 GlassFish 安装,因此它没有使用我安装和配置的 GlassFish 服务器,而是使用自己的 GlassFish 服务器,并且不知道我在谈论什么 jdbc 池。

在收到关闭 GlassFish 域的错误和收到正在使用的端口的错误后,我能够弄清楚这一点。我终于意识到我有两个正在运行的服务器实例。我下载并安装了这个,NetBeans 也在运行。

确保我将 NetBeans 配置为使用已安装的服务器进行本地测试(更容易)或确保我在复制到 NetBeans 安装中的本地 domain.xml 中所做的任何配置(更少),这是一次很好的学习经历简单)。

关于java - ValidationException异常描述: Cannot acquire data source [jdbc/MyDataBase],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38776317/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com