我正在使用spring
和jpa
在MySQL
中开发文档管理应用程序。该应用程序当前正在从用户Web表单createOrUpdateDocumentForm.jsp
接受文档及其元数据到控制器DocumentController.java
。但是,数据没有进入MySQL
数据库。有人可以告诉我如何更改我的代码,以便文档及其元数据存储在底层数据库中吗?
数据流(包括pdf文档)似乎经历了以下对象:
createOrUpdateDocumentForm.jsp //omitted for brevity, since it is sending data to controller (see below)
Document.java
DocumentController.java
ClinicService.java
JpaDocumentRepository.java
The MySQL database
我将按如下方式总结每个对象的相关部分:
jsp
在DocumentController.java
中触发了以下方法:
@RequestMapping(value = "/patients/{patientId}/documents/new", headers = "content-type=multipart/*", method = RequestMethod.POST)
public String processCreationForm(@ModelAttribute("document") Document document, BindingResult result, SessionStatus status, @RequestParam("file") final MultipartFile file) {
document.setCreated();
byte[] contents;
Blob blob = null;
try {
contents = file.getBytes();
blob = new SerialBlob(contents);
} catch (IOException e) {e.printStackTrace();}
catch (SerialException e) {e.printStackTrace();}
catch (SQLException e) {e.printStackTrace();}
document.setContent(blob);
document.setContentType(file.getContentType());
document.setFileName(file.getOriginalFilename());
System.out.println("----------- document.getContentType() is: "+document.getContentType());
System.out.println("----------- document.getCreated() is: "+document.getCreated());
System.out.println("----------- document.getDescription() is: "+document.getDescription());
System.out.println("----------- document.getFileName() is: "+document.getFileName());
System.out.println("----------- document.getId() is: "+document.getId());
System.out.println("----------- document.getName() is: "+document.getName());
System.out.println("----------- document.getPatient() is: "+document.getPatient());
System.out.println("----------- document.getType() is: "+document.getType());
try {System.out.println("[[[[BLOB LENGTH IS: "+document.getContent().length()+"]]]]");}
catch (SQLException e) {e.printStackTrace();}
new DocumentValidator().validate(document, result);
if (result.hasErrors()) {
System.out.println("result.getFieldErrors() is: "+result.getFieldErrors());
return "documents/createOrUpdateDocumentForm";
}
else {
this.clinicService.saveDocument(document);
status.setComplete();
return "redirect:/patients?patientID={patientId}";
}
}
当我通过jsp
中的网络表单向controller
提交文档时,System.out.println()
代码中的controller
命令输出以下内容,表明数据实际上已发送到服务器:
----------- document.getContentType() is: application/pdf
----------- document.getCreated() is: 2013-12-16
----------- document.getDescription() is: paper
----------- document.getFileName() is: apaper.pdf
----------- document.getId() is: null
----------- document.getName() is: apaper
----------- document.getPatient() is: [Patient@564434f7 id = 1, new = false, lastName = 'Frank', firstName = 'George', middleinitial = 'B', sex = 'Male', dateofbirth = 2000-11-28T16:00:00.000-08:00, race = 'caucasian']
----------- document.getType() is: ScannedPatientForms
[[[[BLOB LENGTH IS: 712238]]]] //This indicates the file content was converted to blob
Document.java
模型是:
@Entity
@Table(name = "documents")
public class Document {
@Id
@GeneratedValue
@Column(name="id")
private Integer id;
@ManyToOne
@JoinColumn(name = "client_id")
private Patient patient;
@ManyToOne
@JoinColumn(name = "type_id")
private DocumentType type;
@Column(name="name")
private String name;
@Column(name="description")
private String description;
@Column(name="filename")
private String filename;
@Column(name="content")
@Lob
private Blob content;
@Column(name="content_type")
private String contentType;
@Column(name = "created")
private Date created;
public Integer getId(){return id;}
public void setId(Integer i){id=i;}
protected void setPatient(Patient patient) {this.patient = patient;}
public Patient getPatient(){return this.patient;}
public void setType(DocumentType type) {this.type = type;}
public DocumentType getType() {return this.type;}
public String getName(){return name;}
public void setName(String nm){name=nm;}
public String getDescription(){return description;}
public void setDescription(String desc){description=desc;}
public String getFileName(){return filename;}
public void setFileName(String fn){filename=fn;}
public Blob getContent(){return content;}
public void setContent(Blob ct){content=ct;}
public String getContentType(){return contentType;}
public void setContentType(String ctype){contentType=ctype;}
public void setCreated(){created=new java.sql.Date(System.currentTimeMillis());}
public Date getCreated() {return this.created;}
@Override
public String toString() {return this.getName();}
public boolean isNew() {return (this.id == null);}
}
从ClinicService.java
调用的DocumentController
代码为:
private DocumentRepository documentRepository;
private PatientRepository patientRepository;
@Autowired
public ClinicServiceImpl(DocumentRepository documentRepository, PatientRepository patientRepository) {
this.documentRepository = documentRepository;
this.patientRepository = patientRepository;
}
@Override
@Transactional
public void saveDocument(Document doc) throws DataAccessException {documentRepository.save(doc);}
JpaDocumentRepository.java
中的相关代码是:
@PersistenceContext
private EntityManager em;
@Override
public void save(Document document) {
if (document.getId() == null) {this.em.persist(document);}
else {this.em.merge(document);}
}
最后,创建数据库的SQL代码的相关部分包括:
CREATE TABLE IF NOT EXISTS documenttypes (
id INT(4) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(80),
INDEX(name)
);
CREATE TABLE IF NOT EXISTS patients (
id INT(4) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(30),
middle_initial VARCHAR(5),
last_name VARCHAR(30),
sex VARCHAR(20),
date_of_birth DATE,
race VARCHAR(30),
INDEX(last_name)
);
CREATE TABLE IF NOT EXISTS documents (
id int(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
client_id int(4) UNSIGNED NOT NULL,
type_id INT(4) UNSIGNED,
name varchar(200) NOT NULL,
description text NOT NULL,
filename varchar(200) NOT NULL,
content mediumblob NOT NULL,
content_type varchar(255) NOT NULL,
created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (client_id) REFERENCES patients(id),
FOREIGN KEY (type_id) REFERENCES documenttypes(id)
);
我对此代码进行了哪些更改,以便使用document
将documents
保存在MySQL
数据库的jpa
表中?
答案 0 :(得分:5)
@CodeMed,我花了一段时间,但我能够重现这个问题。这可能是配置问题:@PersistenceContext
可能会被扫描两次,可能会被您的根上下文和您的Web上下文扫描。这导致@PersistenceContext
被共享,因此它不保存您的数据(Spring不允许这样做)。我发现没有显示的消息或日志很奇怪。如果您在保存(文档文档)上尝试了下面的代码片段,您将看到实际错误:
Session session = this.em.unwrap(Session.class);
session.persist(document);
要解决此问题,您可以执行以下操作(避免@PersistenceContext
扫描两次):
1-确保所有控制器都在com.mycompany.myapp.controller
之类的单独软件包中,并在您的网络环境中使用组件扫描<context:component-scan annotation-config="true" base-package="com.mycompany.myapp.controller" />
2-确保其他组件位于控制器包以外的不同包中,例如:com.mycompany.myapp.dao
,com.mycompany.myapp.service
....
然后在你的根上下文中使用component-scan as
<context:component-scan annotation-config="true" base-package="com.mycompany.myapp.service, com.mycompany.myapp.dao" />
或者告诉我你的spring xml配置和你的web.xml,我会指出你正确的方向
答案 1 :(得分:3)
我不是Hibernate-with-annotations专家(我从2004年开始使用它,但使用XML配置)。无论如何,我认为你错误地混合了注释。您已经表明不希望file
字段与@Transient
保持一致,但您也说它是@Lob
,这意味着您确实希望它保持不变。看起来@Lob
正在获胜,而Hibernate正在尝试使用字段名称将字段解析为列。
脱掉@Lob,我想你会被设置。
答案 2 :(得分:3)
您的JPA映射似乎很好。显然,@ Lob要求数据类型为byte [] / Byte [] /或java.sql.Blob。基于此,加上你的症状和调试打印输出似乎你的代码正在进行正确的数据操作(JPA注释很好),但spring + MySQL的组合并没有提交。这表明您的spring事务配置或MySQL数据类型存在一个小问题。
<强> 1。交易行为
JpaDocumentRepository.java中的相关代码是:
@PersistenceContext
private EntityManager em;
@Override
public void save(Document document) {
if (document.getId() == null) {this.em.persist(document);}
else {this.em.merge(document);}
}
@PersistenceContext
注入实体管理器(即由JTA支持的容器管理实体管理器,而不是实体管理器资源本地事务,em.getTransaction()
)@Transactional
(即弹簧专有的转录 - 后来在Java EE 7中标准化的注释)。注释和代码应该提供事务性行为。您是否为JTA事务正确配置了Spring? (使用JtaTransactionManager,而不是提供JDBC驱动程序本地事务的DataSourceTransactionManager)Spring XML应包含与以下内容非常相似的内容:
<!-- JTA requires a container-managed datasource -->
<jee:jndi-lookup id="jeedataSource" jndi-name="jdbc/mydbname"/>
<!-- enable the configuration of transactional behavior based on annotations -->
<tx:annotation-driven transaction-manager="txManager"/>
<!-- a PlatformTransactionManager is still required -->
<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager" >
<!-- (this dependency "jeedataSource" must be defined somewhere else) -->
<property name="dataSource" ref="jeedataSource"/>
</bean>
怀疑其他参数/设置。
这是Spring必须做的手动编码版本(仅用于理解 - 不要对此进行编码)。使用UserTransaction(JTA),而不是EntityTransaction类型的em.getTransaction()(JDBC本地):
// inject a reference to the servlet container JTA tx
@Resource UserTransaction jtaTx;
// servlet container-managed EM
@PersistenceContext private EntityManager em;
public void save(Document document) {
try {
jtaTx.begin();
try {
if (document.getId() == null) {this.em.persist(document);}
else {this.em.merge(document);}
jtaTx.commit();
} catch (Exception e) {
jtaTx.rollback();
// do some error reporting / throw exception ...
}
} catch (Exception e) {
// system error - handle exceptions from UserTransaction methods
// ...
}
}
<强> 2。 MySQL数据类型
如图here (at bottom)所示,与其他数据库相比,MySql Blob有点特殊。各种Blob及其最大存储容量为:
TINYBLOB - 255个字节 BLOB - 65535字节 MEDIUMBLOB - 16,777,215字节(2 ^ 24 - 1) LONGBLOB - 4G字节(2 ^ 32 - 1)
如果(2)证明是你的问题:
答案 3 :(得分:2)
创建了将文件存储到mysql数据库中的示例应用程序,使用blob / clob的小信息存储文件是非常古老的做法。现在所有数据库都升级为以字节数组格式存储,此示例可能对您有帮助符合你的要求。
使用的技术:spring 3.2 + hibernate 4.x
答案 4 :(得分:1)
这不是你问题的直接答案(抱歉,但我不是hibernate的粉丝所以不能真正帮助你)但是你应该考虑使用NoSQL数据库,如MongoDB而不是MySQL来完成这样的工作这个。我已经尝试了两种方法,NoSQL数据库更适合这种要求。
你会发现在这样的情况下它的表现比MySQL要好得多,SpringData MongoDB允许你非常轻松地保存和加载自动映射到MongoDB的Java对象。