- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 JSP 页面中触发如下按钮后,我想插入到 MYSQL 中的表中:
<%="http://localhost:8080/repository/file/view/viewPDF.jsp?count=1&f0="+nd.getNodeid()%>
<%
NodeFacade k= new NodeFacade();
k.insert_url(nd.getNodeid(),
"http://localhost:8080/repository/file/view/viewPDF.jsp?count=1&f0="
+ nd.getNodeid());
%>
这个的功能在NodeFacade.java中:
import javax.annotation.Resource;
import javax.ejb.Stateless;
import javax.ejb.EJB;
import javax.ejb.EJBContext;
import javax.ejb.TransactionAttribute;
import javax.ejb.TransactionAttributeType;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
@Stateless
public class NodeFacade implements NodeFacadeLocal, NodeFacadeRemote {
@PersistenceContext(unitName ="PantonPU")
private EntityManager em;
@Resource
private EJBContext ejbContext;
@EJB
KeyGenFacadeLocal keyGenFacade;
@EJB
UserFacadeLocal userFacade;
@EJB
NodeFacadeLocal UrlLink ;
/**
* message
*/
String msg = "";
/**
* Return messages(if any) after invoking a bean function
* @return (String)
*/
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
public String getMsg() {
return msg;
}
/**
* Creates a node { Nodedesc, Nodegid, Nodegdt } must be set. Attributes
* are added from the attribute map Node.attrMap if they are set.
*
* @param n
* @return
* Node with identifier {ID, DT} set on success, null on error
*
*/
public Node create(Node n) {
try {
if (n.getNodedesc() == null || n.getNodegid().longValue() == 0) {
throw new Exception("Either description, or graph space is not set. Aborting...");
}
// allocate a unique identifer value for the node
long id = keyGenFacade.generate("NODE");
if (id == -1) {
throw new Exception(keyGenFacade.getMsg());
}
n.setNodeid(id);
n.setNodedt(new Date());
// checks if the creator node is set:
if (n.getNodeuid() == null) {
Auser u = userFacade.get("root", false);
if (u == null) {
throw new Exception(userFacade.getMsg());
}
n.setNodeuid(BigInteger.valueOf(u.getAuserPK().getNodeid()));
}
// persist the node into the db first
em.persist(n);
// add in the attributes for the node
if (n.get_attrs() != null) {
if (add_attr(n.getNodeid(),
n.get_attrs()) == -1) {
throw new Exception("Unable to add attributes");
}
}
// adds an audit trail
if (add_hist(n.getNodeid(),
NodeHist.NEW,
"Object (" + n.getNodetype() + ") created.",
n.getNodeuid().longValue()) == -1) {
throw new Exception("Unable to add log");
}
return n;
} catch (Exception e) {
ejbContext.setRollbackOnly();
msg = CoreUtil.wrapMsg(CoreUtil.FUNC_ERROR,
this.getClass().getName(), "create", e.getMessage());
return null;
}
}
public void insert_url(long nodeid,String url){
try {
String sql = "INSERT INTO urllink (NODEID, URL) VALUES ("
+ nodeid + ", '" + url + "')";
em.persist(sql);
} catch (Exception e) {
e.printStackTrace();
}
}
没有错误,但它没有显示在我的数据库表中。我做错什么了吗?
尝试对其进行调试,它可以将值正确传递给函数,但在 em
中,它显示为 null。
编辑:
持久性.xml:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.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_1_0.xsd">
<persistence-unit name="PantonPU" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>jdbc/PANTON9</jta-data-source>
<class>com.htasia.panton9.Entities.Core.Apasswd</class>
<class>com.htasia.panton9.Entities.Core.Audel</class>
<class>com.htasia.panton9.Entities.Core.Augroup</class>
<class>com.htasia.panton9.Entities.Core.Auser</class>
<class>com.htasia.panton9.Entities.Core.Graph</class>
<class>com.htasia.panton9.Entities.Core.Locktbl</class>
<class>com.htasia.panton9.Entities.Core.Logging</class>
<class>com.htasia.panton9.Entities.Core.Modlattr</class>
<class>com.htasia.panton9.Entities.Core.Module</class>
<class>com.htasia.panton9.Entities.Core.Nhist</class>
<class>com.htasia.panton9.Entities.Core.Node</class>
<class>com.htasia.panton9.Entities.Core.Nodeattr</class>
<class>com.htasia.panton9.Entities.Core.Nodelink</class>
<class>com.htasia.panton9.Entities.MCRE.UrlLink</class>
<class>com.htasia.panton9.Entities.Core.Seqtbl</class>
<class>com.htasia.panton9.Entities.Core.Uwidget</class>
<class>com.htasia.panton9.Entities.Core.Widget</class>
<class>com.htasia.panton9.Entities.Form.Frxcontainer</class>
<class>com.htasia.panton9.Entities.Form.Frxebinary</class>
<class>com.htasia.panton9.Entities.Form.Frxelement</class>
<class>com.htasia.panton9.Entities.Form.Frxeoptions</class>
<class>com.htasia.panton9.Entities.MCRE.Converr</class>
<class>com.htasia.panton9.Entities.MCRE.Convqueue</class>
<class>com.htasia.panton9.Entities.MCRE.Filesec</class>
<class>com.htasia.panton9.Entities.MCRE.Filext</class>
<class>com.htasia.panton9.Entities.MCRE.Filter</class>
<class>com.htasia.panton9.Entities.MCRE.Fmedia</class>
<class>com.htasia.panton9.Entities.MCRE.Foldersec</class>
<class>com.htasia.panton9.Entities.MCRE.Fverinfo</class>
<class>com.htasia.panton9.Entities.MCRE.Imageinfo</class>
<class>com.htasia.panton9.Entities.MCRE.Pdfinfo</class>
<class>com.htasia.panton9.Entities.MCRE.Pindex</class>
<class>com.htasia.panton9.Entities.MCRE.Referencelink</class>
<class>com.htasia.panton9.Entities.MCRE.Stcknote</class>
<class>com.htasia.panton9.Entities.MCRE.Swfinfo</class>
<class>com.htasia.panton9.Entities.MCRE.Windex</class>
<class>com.htasia.panton9.Entities.Notify.Iprxntfevent</class>
<class>com.htasia.panton9.Entities.Notify.Ntfevent</class>
<class>com.htasia.panton9.Entities.Notify.Ntfobj</class>
<class>com.htasia.panton9.Entities.Notify.Ntfqlog</class>
<class>com.htasia.panton9.Entities.Notify.Ntfqueue</class>
<class>com.htasia.panton9.Entities.Notify.Ntfug</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxattch</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxattchsec</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxendrule</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxlink</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxlog</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxmark</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxprocess</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxrule</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxrulestation</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxstation</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxtask</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxattch</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxendrule</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxlink</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxlog</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxmark</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxprocess</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxrule</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxrulestation</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxstation</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxtask</class>
<class>com.htasia.panton9.Entities.Workflow.Prxaction</class>
<class>com.htasia.panton9.Entities.Workflow.Prxattch</class>
<class>com.htasia.panton9.Entities.Workflow.Prxendrule</class>
<class>com.htasia.panton9.Entities.Workflow.Prxendstatus</class>
<class>com.htasia.panton9.Entities.Workflow.Prxevent</class>
<class>com.htasia.panton9.Entities.Workflow.Prxexception</class>
<class>com.htasia.panton9.Entities.Workflow.Prxlink</class>
<class>com.htasia.panton9.Entities.Workflow.Prxprocess</class>
<class>com.htasia.panton9.Entities.Workflow.Prxrule</class>
<class>com.htasia.panton9.Entities.Workflow.Prxrulestation</class>
<class>com.htasia.panton9.Entities.Workflow.Prxstation</class>
<class>com.htasia.panton9.Entities.Workflow.Prxversion</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxattchsec</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxattchsec</class>
<class>com.htasia.panton9.Entities.Workflow.Prxattchsec</class>
<class>com.htasia.panton9.Entities.Workflow.Prxfrx</class>
<class>com.htasia.panton9.Entities.Workflow.PrxfrxPK</class>
<class>com.htasia.panton9.Entities.Workflow.Prxfrxstn</class>
<class>com.htasia.panton9.Entities.Workflow.Prxfrxstnelm</class>
<class>com.htasia.panton9.Entities.Workflow.PrxfrxstnelmPK</class>
<class>com.htasia.panton9.Entities.Notify.Iprxntfevent</class>
<class>com.htasia.panton9.Entities.Notify.Ntfevent</class>
<class>com.htasia.panton9.Entities.Notify.Ntfobj</class>
<class>com.htasia.panton9.Entities.Notify.Ntfqlog</class>
<class>com.htasia.panton9.Entities.Notify.Ntfqueue</class>
<class>com.htasia.panton9.Entities.Notify.Ntfug</class>
<class>com.htasia.panton9.Entities.MCRE.Fmpolicy</class>
<class>com.htasia.panton9.Entities.Workflow.Prxapprvlist</class>
<class>com.htasia.panton9.Entities.Workflow.Prxdlist</class>
<class>com.htasia.panton9.Entities.Workflow.Prxdlistelem</class>
<class>com.htasia.panton9.Entities.Workflow.Prxdoccon</class>
<class>com.htasia.panton9.Entities.MCRE.Fmediainfo</class>
<class>com.htasia.panton9.Entities.Workflow.Hprxremarks</class>
<class>com.htasia.panton9.Entities.Workflow.Iprxremarks</class>
<class>com.htasia.panton9.Entities.MCRE.Tmpfmpolicy</class>
<class>com.htasia.panton9.Entities.Workflow.Mprxstation</class>
<class>com.htasia.panton9.Entities.MCRE.Erequest</class>
<class>com.htasia.panton9.Entities.MCRE.Ereqdetail</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.SunOneJtaPlatform"/>
</properties>
</persistence-unit>
</persistence>
最佳答案
您能否在代码中创建如下所示的entityManager对象。
EntityManagerFactory ENTITY_MANAGER_FACTORY = Persistence.createEntityManagerFactory("PantonPU");//
EntityManager em = ENTITY_MANAGER_FACTORY.createEntityManager();
关于Java-Persist无法插入到SQL表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55233544/
我有一台 MySQL 服务器和一台 PostgreSQL 服务器。 需要从多个表中复制或重新插入一组数据 MySQL 流式传输/同步到 PostgreSQL 表。 这种复制可以基于时间(Sync)或事
如果两个表的 id 彼此相等,我尝试从一个表中获取数据。这是我使用的代码: SELECT id_to , email_to , name_to , status_to
我有一个 Excel 工作表。顶行对应于列名称,而连续的行每行代表一个条目。 如何将此 Excel 工作表转换为 SQL 表? 我使用的是 SQL Server 2005。 最佳答案 这取决于您使用哪
我想合并两个 Django 模型并创建一个模型。让我们假设我有第一个表表 A,其中包含一些列和数据。 Table A -------------- col1 col2 col3 col
我有两个表:table1,table2,如下所示 table1: id name 1 tamil 2 english 3 maths 4 science table2: p
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 1 年前。 Improve th
下面两个语句有什么区别? newTable = orginalTable 或 newTable.data(originalTable) 我怀疑 .data() 方法具有性能优势,因为它在标准 AX 中
我有一个表,我没有在其中显式定义主键,它并不是真正需要的功能......但是一位同事建议我添加一个列作为唯一主键以随着数据库的增长提高性能...... 谁能解释一下这是如何提高性能的? 没有使用索引(
如何将表“产品”中的产品记录与其不同表“图像”中的图像相关联? 我正在对产品 ID 使用自动增量。 我觉得不可能进行关联,因为产品 ID 是自动递增的,因此在插入期间不可用! 如何插入新产品,获取产品
我有一个 sql 表,其中包含关键字和出现次数,如下所示(尽管出现次数并不重要): ____________ dog | 3 | ____________ rat | 7 | ____
是否可以使用目标表中的LAST_INSERT_ID更新源表? INSERT INTO `target` SELECT `a`, `b` FROM `source` 目标表有一个自动增量键id,我想将其
我正在重建一个搜索查询,因为它在“我看到的”中变得多余,我想知道什么 (albums_artists, artists) ( ) does in join? is it for boosting pe
以下是我使用 mysqldump 备份数据库的开关: /usr/bin/mysqldump -u **** --password=**** --single-transaction --databas
我试图获取 MySQL 表中的所有行并将它们放入 HTML 表中: Exam ID Status Assigned Examiner
如何查询名为 photos 的表中的所有记录,并知道当前用户使用单个查询将哪些结果照片添加为书签? 这是我的表格: -- -- Table structure for table `photos` -
我的网站都在 InnoDB 表上运行,目前为止运行良好。现在我想知道在我的网站上实时发生了什么,所以我将每个页面浏览量(页面、引荐来源网址、IP、主机名等)存储在 InnoDB 表中。每秒大约有 10
我在想我会为 mysql 准备两个表。一个用于存储登录信息,另一个用于存储送货地址。这是传统方式还是所有内容都存储在一张表中? 对于两个表...有没有办法自动将表 A 的列复制到表 B,以便我可以引用
我不是程序员,我从这个表格中阅读了很多关于如何解决我的问题的内容,但我的搜索效果不好 我有两张 table 表 1:成员 id*| name | surname -------------------
我知道如何在 ASP.NET 中显示真实表,例如 public ActionResult Index() { var s = db.StaffInfoDBSet.ToList(); r
我正在尝试运行以下查询: "insert into visits set source = 'http://google.com' and country = 'en' and ref = '1234
我是一名优秀的程序员,十分优秀!