gpt4 book ai didi

java - 如何将 xhtml 表单中的数据插入到 netbeans 中的 Java DB 中?

转载 作者:行者123 更新时间:2023-12-02 04:50:15 27 4
gpt4 key购买 nike

我想使用 netbeans 和 java DB 将数据从表单输入到数据库。我的问题是我不知道如何将用户在表单中输入的数据传递到数据库。

我尝试创建一个实体类并通过它连接它,但根据我遵循的指南,我最终可以访问整个数据库而不仅仅是表单

编辑:这是一个学校项目,至少我还没有学过 JDBC。


<?xml version='1.0' encoding='UTF-8' ?>
<!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"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core">
<h:head>
<title>Registration</title>
<h:outputStylesheet name="css/jsfcrud.css"/>
<h:outputStylesheet library="css" name="styles.css"/>
</h:head>
<h:body>
<h3>Registration Page</h3>
<h:form>
<h:panelGrid columns="3"
columnClasses="rightalign,leftalign,leftali
gn">
<h:outputLabel value="Category: " for="category"/>
<h:selectOneMenu id="category" label="Category"
value="#{registrationBean.
category}" >
<f:selectItem itemLabel="Simple." itemValue="Simple"/>
<f:selectItem itemLabel="Suite." itemValue="Suite"/>
<f:selectItem itemLabel="Luxurious" itemValue="Luxurious"/>
</h:selectOneMenu>
<h:message for="category"/>
<h:outputLabel value="People: " for="people"/>
<h:selectOneMenu id="people" label="People"
value="#{registrationBean.
people}" >
<f:selectItem itemLabel="Mr." itemValue="1"/>
<f:selectItem itemLabel="Mrs." itemValue="2"/>
<f:selectItem itemLabel="Miss" itemValue="3"/>
<f:selectItem itemLabel="Miss" itemValue="4"/>
</h:selectOneMenu>
<h:message for="people"/>
<h:outputLabel value="Duration:" for="duration"/>
<h:inputText id="duration" label="Duration"
required="true"
value="#{registrationBean.duration}" />

<h:message for="duration" />
<h:panelGroup/>
<h:commandButton id="register" value="Register"
action="confirmation" />
</h:panelGrid>
</h:form>
<br />
<h:link outcome="/room/List" value="Show All Room Items"/>
</h:body>

</html>

@Entity
public class Room implements Serializable {

@Id
@Basic(optional = false)
@NotNull
@Column(nullable = false)
private Integer id;
@Basic(optional = false)
@NotNull
@Size(min = 1, max = 20)
@Column(nullable = false, length = 20)
private String category;
@Basic(optional = false)
@NotNull
@Column(nullable = false)
private int people;
@Basic(optional = false)
@NotNull
@Column(nullable = false)
private int duration;

private static final long serialVersionUID = 1L;
@Id

public String getCategory() {
return category;
}

public void setCategory(String category) {
this.category = category;
}

public Integer getPeople() {
return people;
}

public void setPeople(Integer people) {
this.people = people;
}

public Integer getDuration() {
return duration;
}

public void setDuration(Integer duration) {
this.duration = duration;
}

public Integer getId() {
return id;
}

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

@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 Room)) {
return false;
}
Room other = (Room) 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 "com.ensode.jsf.hotelreservations.Room[ id=" + id + " ]";
}

public Room() {
}

public Room(Integer id) {
this.id = id;
}

public Room(Integer id, String category, int people, int duration) {
this.id = id;
this.category = category;
this.people = people;
this.duration = duration;
}


}

public class RoomJpaController implements Serializable {

public RoomJpaController(UserTransaction utx, EntityManagerFactory emf) {
this.utx = utx;
this.emf = emf;
}
private UserTransaction utx = null;
private EntityManagerFactory emf = null;

public EntityManager getEntityManager() {
return emf.createEntityManager();
}

public void create(Room room) throws RollbackFailureException, Exception {
EntityManager em = null;
try {
utx.begin();
em = getEntityManager();
em.persist(room);
utx.commit();
} catch (Exception ex) {
try {
utx.rollback();
} catch (Exception re) {
throw new RollbackFailureException("An error occurred attempting to roll back the transaction.", re);
}
throw ex;
} finally {
if (em != null) {
em.close();
}
}
}

public void edit(Room room) throws NonexistentEntityException, RollbackFailureException, Exception {
EntityManager em = null;
try {
utx.begin();
em = getEntityManager();
room = em.merge(room);
utx.commit();
} catch (Exception ex) {
try {
utx.rollback();
} catch (Exception re) {
throw new RollbackFailureException("An error occurred attempting to roll back the transaction.", re);
}
String msg = ex.getLocalizedMessage();
if (msg == null || msg.length() == 0) {
Integer id = room.getId();
if (findRoom(id) == null) {
throw new NonexistentEntityException("The room with id " + id + " no longer exists.");
}
}
throw ex;
} finally {
if (em != null) {
em.close();
}
}
}

public void destroy(Long id) throws NonexistentEntityException, RollbackFailureException, Exception {
EntityManager em = null;
try {
utx.begin();
em = getEntityManager();
Room room;
try {
room = em.getReference(Room.class, id);
room.getId();
} catch (EntityNotFoundException enfe) {
throw new NonexistentEntityException("The room with id " + id + " no longer exists.", enfe);
}
em.remove(room);
utx.commit();
} catch (Exception ex) {
try {
utx.rollback();
} catch (Exception re) {
throw new RollbackFailureException("An error occurred attempting to roll back the transaction.", re);
}
throw ex;
} finally {
if (em != null) {
em.close();
}
}
}

public List<Room> findRoomEntities() {
return findRoomEntities(true, -1, -1);
}

public List<Room> findRoomEntities(int maxResults, int firstResult) {
return findRoomEntities(false, maxResults, firstResult);
}

private List<Room> findRoomEntities(boolean all, int maxResults, int firstResult) {
EntityManager em = getEntityManager();
try {
CriteriaQuery cq = em.getCriteriaBuilder().createQuery();
cq.select(cq.from(Room.class));
Query q = em.createQuery(cq);
if (!all) {
q.setMaxResults(maxResults);
q.setFirstResult(firstResult);
}
return q.getResultList();
} finally {
em.close();
}
}

public Room findRoom(Integer id) {
EntityManager em = getEntityManager();
try {
return em.find(Room.class, id);
} finally {
em.close();
}
}

public int getRoomCount() {
EntityManager em = getEntityManager();
try {
CriteriaQuery cq = em.getCriteriaBuilder().createQuery();
Root<Room> rt = cq.from(Room.class);
cq.select(em.getCriteriaBuilder().count(rt));
Query q = em.createQuery(cq);
return ((Long) q.getSingleResult()).intValue();
} finally {
em.close();
}
}

}

这是 persistance.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="HotelReservationsPU" transaction-type="JTA">
<jta-data-source>java:app/roomintro</jta-data-source>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>
</properties>
</persistence-unit>
</persistence>

结果是得到一个表单,虽然它可以工作,但它不会在数据库中插入任何数据。

最佳答案

亲爱的哈利斯·洛伦萨托斯:

在普通的 java 项目中,为了将数据存储在数据库中,您可以使用 Hibernate 或其他实现 JPA 规范的框架。

通常您将使用 Maven 项目,并且在 pom.xml 文件中您有一些 Hibernate 依赖项,如下所示:

    <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version>
</dependency>

通常您会存储整个对象

您在此处放置的代码:

    utx.begin();
em = getEntityManager();
em.persist(room);
utx.commit();

看起来您正在使用一些 JPA 实现。但为了理解您的问题,查看 pom.xml 或 hibernate.properties 等配置文件将有所帮助。

您可以上传完整的代码以便更好地理解。Y与你分享一些我学习Hibernate并将数据存储在mysql数据库中的项目 https://github.com/marianocali/concesionario

这是一个使用 Hibernate 的项目的简单示例,您可以在其中看到与您的项目具有所有配置的类似代码。

文件 persistence.xml 创建 Java 类和数据库表之间的映射。

编辑:您的 persistence.xml 文件必须包含有关数据库连接的信息:看看这两个例子:https://github.com/marianocali/concesionario/blob/master/src/main/resources/META-INF/persistence.xml

https://gist.github.com/halyph/2990769

您必须将所有这些信息添加到您的文件中。

如果这对您有帮助,请为答案投票:)如果您需要更多帮助,请告诉我
问候。
马里亚诺

关于java - 如何将 xhtml 表单中的数据插入到 netbeans 中的 Java DB 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56450461/

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