- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Spring 表格中,我添加了一名新员工,其中包含他开始工作的日期和他离开公司的日期,我遇到的问题是,当一名员工现在在公司工作时,该日期是他离开公司应该是空的。但是当我不触摸日期字段时,tomcat 给出了错误:
Incorrect date value: '' for column 'DATESORTIE' at row 1
这是我的Employee.hbm.xml
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 5 ao?t 2015 11:05:44 by Hibernate Tools 3.4.0.CR1 -->
<hibernate-mapping>
<class name="com.my.dao.Employe" table="EMPLOYE">
<id name="id" type="int">
<column name="ID" />
<generator class="native" />
</id>
<property name="nomEmploye" type="java.lang.String">
<column name="NOMEMPLOYE" />
</property>
<property name="prenomEmploye" type="java.lang.String">
<column name="PRENOMEMPLOYE" />
</property>
<property name="matriculeMY" type="int">
<column name="MATRICULEMY" />
</property>
<property name="adresse" type="java.lang.String">
<column name="ADRESSE" />
</property>
<property name="sexe" type="java.lang.String">
<column name="SEXE" />
</property>
<property name="cin" type="java.lang.String">
<column name="CIN" />
</property>
<property name="dateNaissance" type="java.lang.String">
<column name="DATENAISSANCE" />
</property>
<property name="situationFamiliale" type="java.lang.String">
<column name="SITUATIONFAMILIALE" />
</property>
<!-- <property name="nbEnfant" type="int">
<column name="NBENFANT"></column>
</property> -->
<property name="dateEntree" type="java.lang.String">
<column name="DATEENTREE" />
</property>
<property name="dateSortie" type="java.lang.String">
<column name="DATESORTIE" />
</property>
<property name="numCIMR" type="java.lang.String">
<column name="NUMCIMR" />
</property>
<property name="numCNSS" type="java.lang.String">
<column name="NUMCNSS" />
</property>
<property name="numMUT" type="java.lang.String">
<column name="NUMMUT" />
</property>
<property name="profile" type="java.lang.String">
<column name="PROFILE" />
</property>
<property name="resteConge" type="java.lang.String">
<column name="RESTECONGE" />
</property>
<property name="banque" type="java.lang.String">
<column name="BANQUE" />
</property>
<property name="numCpteBanc" type="java.lang.String">
<column name="NUMCPTEBANC" />
</property>
<property name="fonction" type="java.lang.String">
<column name="FONCTION" />
</property>
<property name="salaire" type="float">
<column name="SALAIRE" />
</property>
<property name="indTransport" type="float">
<column name="INDTRANSPORT" />
</property>
<property name="indRepresent" type="float">
<column name="INDREPRESENT" />
</property>
<property name="indPanier" type="float">
<column name="INDPANIER" />
</property>
<many-to-one name="eDepartement" class="com.my.dao.Departement" access="field" fetch="join">
<column name="EDEPARTEMENT" />
</many-to-one>
<many-to-one name="eFonction" class="com.my.dao.Fonction" access="field" fetch="join">
<column name="EFONCTION" />
</many-to-one>
<many-to-one name="eService" class="com.my.dao.Service" access="field" fetch="join">
<column name="ESERVICE" />
</many-to-one>
<many-to-one name="eTypePaiement" class="com.my.dao.TypePaiement" access="field" fetch="join">
<column name="ETYPEPAIEMENT" />
</many-to-one>
<many-to-one name="eModePaiement" class="com.my.dao.ModePaiement" access="field" fetch="join">
<column name="EMODEPAIEMENT" />
</many-to-one>
</class>
</hibernate-mapping>
这是我的com.my.dao.Employee类
package com.my.dao;
/**
* @author Ilias
* @version 1.0
*/
public class Employe {
private int id;
private String nomEmploye;
private String prenomEmploye;
private int matriculeMY;
private String adresse;
private String sexe;
private String cin;
private String dateNaissance;
private String situationFamiliale;
private int nbEnfant;
private String dateEntree;
private String dateSortie;
private String numCIMR;
private String numCNSS;
private String numMUT;
private String profile;
private String resteConge;
private String banque;
private String numCpteBanc;
private String fonction;
private float salaire;
private float indTransport;
private float indRepresent;
private float indPanier;
private Departement eDepartement;
private Fonction eFonction;
private Service eService;
private TypePaiement eTypePaiement;
private ModePaiement eModePaiement;
/**
* @return the nbEnfant
*/
public int getNbEnfant() {
return nbEnfant;
}
/**
* @param nbEnfant the nbEnfant to set
*/
public void setNbEnfant(int nbEnfant) {
this.nbEnfant = nbEnfant;
}
public String getAdresse() {
return adresse;
}
public void setAdresse(String adresse) {
this.adresse = adresse;
}
public Departement getM_Departement() {
return eDepartement;
}
public void setM_Departement(Departement m_Departement) {
this.eDepartement = m_Departement;
}
public Fonction getM_Fonction() {
return eFonction;
}
public void setM_Fonction(Fonction m_Fonction) {
this.eFonction = m_Fonction;
}
public Service getM_Service() {
return eService;
}
public void setM_Service(Service m_Service) {
this.eService = m_Service;
}
public TypePaiement getM_TypePaiement() {
return eTypePaiement;
}
public void setM_TypePaiement(TypePaiement m_TypePaiement) {
this.eTypePaiement = m_TypePaiement;
}
public ModePaiement getM_ModePaiement() {
return eModePaiement;
}
public void setM_ModePaiement(ModePaiement m_ModePaiement) {
this.eModePaiement = m_ModePaiement;
}
public int getId() {
return id;
}
public String getBanque() {
return banque;
}
public void setBanque(String banque) {
this.banque = banque;
}
public String getNumCpteBanc() {
return numCpteBanc;
}
public void setNumCpteBanc(String numCpteBanc) {
this.numCpteBanc = numCpteBanc;
}
public float getSalaire() {
return salaire;
}
public void setSalaire(float salaire) {
this.salaire = salaire;
}
public float getIndTransport() {
return indTransport;
}
public void setIndTransport(float indTransport) {
this.indTransport = indTransport;
}
public float getIndRepresent() {
return indRepresent;
}
public void setIndRepresent(float indRepresent) {
this.indRepresent = indRepresent;
}
public float getIndPanier() {
return indPanier;
}
public void setIndPanier(float indPanier) {
this.indPanier = indPanier;
}
public void setId(int id) {
this.id = id;
}
public String getNomEmploye() {
return nomEmploye;
}
public void setNomEmploye(String nomEmploye) {
this.nomEmploye = nomEmploye;
}
public String getPrenomEmploye() {
return prenomEmploye;
}
public void setPrenomEmploye(String prenomEmploye) {
this.prenomEmploye = prenomEmploye;
}
public int getMatriculeMY() {
return matriculeMY;
}
public void setMatriculeMY(int matriculeMY) {
this.matriculeMY = matriculeMY;
}
public String getSexe() {
return sexe;
}
public void setSexe(String sexe) {
this.sexe = sexe;
}
public String getCin() {
return cin;
}
public void setCin(String cin) {
this.cin = cin;
}
public String getDateNaissance() {
return dateNaissance;
}
public void setDateNaissance(String dateNaissance) {
this.dateNaissance = dateNaissance;
}
public String getSituationFamiliale() {
return situationFamiliale;
}
public void setSituationFamiliale(String situationFamiliale) {
this.situationFamiliale = situationFamiliale;
}
public String getDateEntree() {
return dateEntree;
}
public void setDateEntree(String dateEntree) {
this.dateEntree = dateEntree;
}
public String getDateSortie() {
return dateSortie;
}
public void setDateSortie(String dateSortie) {
this.dateSortie = dateSortie;
}
public String getNumCIMR() {
return numCIMR;
}
public void setNumCIMR(String numCIMR) {
this.numCIMR = numCIMR;
}
public String getNumCNSS() {
return numCNSS;
}
public void setNumCNSS(String numCNSS) {
this.numCNSS = numCNSS;
}
public String getNumMUT() {
return numMUT;
}
public void setNumMUT(String numMUT) {
this.numMUT = numMUT;
}
public String getProfile() {
return profile;
}
public void setProfile(String profile) {
this.profile = profile;
}
public String getResteConge() {
return resteConge;
}
public void setResteConge(String resteConge) {
this.resteConge = resteConge;
}
public void copie(Employe e)
{
this.nomEmploye = e.nomEmploye;
System.out.println("nom : "+e.getNomEmploye()+" nom :"+this.nomEmploye);
this.prenomEmploye = e.prenomEmploye;
this.matriculeMY = e.matriculeMY;
this.sexe = e.sexe;
this.cin = e.cin;
this.dateNaissance = e.dateNaissance;
this.situationFamiliale = e.situationFamiliale;
this.dateEntree = e.dateEntree;
this.dateSortie = e.dateSortie;
this.numCIMR = e.numCIMR;
this.numCNSS = e.numCNSS;
this.numMUT = e.numMUT;
this.profile = e.profile;
this.resteConge = e.resteConge;
this.banque = e.banque;
this.numCpteBanc = e.numCpteBanc;
this.salaire = e.salaire;
this.indTransport = e.indTransport;
this.indRepresent = e.indRepresent;
this.indPanier = e.indPanier;
this.fonction = e.fonction;
this.eDepartement = e.eDepartement;
this.eFonction = e.eFonction;
this.eService = e.eService;
this.eTypePaiement = e.eTypePaiement;
this.eModePaiement = e.eModePaiement;
}
public Employe(Employe e){
this.nomEmploye = e.nomEmploye;
System.out.println("nom : "+e.getNomEmploye()+" nom :"+this.nomEmploye);
this.setNomEmploye(e.nomEmploye);
this.setPrenomEmploye(e.prenomEmploye);
this.setCin(e.cin);
this.setDateNaissance(e.dateNaissance);
this.setSituationFamiliale(e.situationFamiliale);
this.setDateEntree(e.dateEntree);
this.setDateSortie(e.dateSortie);
this.setNumCIMR(e.numCIMR);
this.setNumCNSS(e.numCNSS);
this.setNumMUT(e.numMUT);
this.setProfile(e.profile);
this.setResteConge(e.resteConge);
this.setBanque(e.banque);
this.setNumCpteBanc(e.numCpteBanc);
this.setSalaire(e.salaire);
this.setIndTransport(e.indTransport);
this.setIndRepresent(e.indRepresent);
this.setIndPanier(e.indPanier);
this.setFonction(e.fonction);
this.setM_Departement(e.eDepartement);
}
public String getFonction() {
return fonction;
}
public void setFonction(String fonction) {
this.fonction = fonction;
}
public Employe(String nomEmploye, String prenomEmploye, int matriculeMY, String adresse, String sexe, String cin,
String dateNaissance, String situationFamiliale, String dateEntree, String dateSortie, String numCIMR,
String numCNSS, String numMUT, String profile, String resteConge, String banque, String numCpteBanc,
String fonction, int salaire, float indTransport, float indRepresent, float indPanier,
Departement m_Departement, Fonction m_Fonction, Service m_Service, TypePaiement m_TypePaiement,
ModePaiement m_ModePaiement) {
super();
this.nomEmploye = nomEmploye;
this.prenomEmploye = prenomEmploye;
this.matriculeMY = matriculeMY;
this.adresse = adresse;
this.sexe = sexe;
this.cin = cin;
this.dateNaissance = dateNaissance;
this.situationFamiliale = situationFamiliale;
this.dateEntree = dateEntree;
this.dateSortie = dateSortie;
this.numCIMR = numCIMR;
this.numCNSS = numCNSS;
this.numMUT = numMUT;
this.profile = profile;
this.resteConge = resteConge;
this.banque = banque;
this.numCpteBanc = numCpteBanc;
this.fonction = fonction;
this.salaire = salaire;
this.indTransport = indTransport;
this.indRepresent = indRepresent;
this.indPanier = indPanier;
this.eDepartement = m_Departement;
this.eFonction = m_Fonction;
this.eService = m_Service;
this.eTypePaiement = m_TypePaiement;
this.eModePaiement = m_ModePaiement;
}
public Employe() {
}
/**
* {@exception} Throwable
*/
public void finalize() throws Throwable{
}
}
我正在使用 SpringMVC、hibernate(hbm 文件)、MYSQL DB 来处理 Spring
PLZ,有人可以帮忙吗?
最佳答案
表EMPLOYE
,列DATESORTIE
包含空字符串''
,请将其更改为null
并重试。
关于java - 日期值不正确 : '' for column 'DATESORTIE' at row 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31914722/
我的问题:非常具体。我正在尝试想出解析以下文本的最简单方法: ^^domain=domain_value^^version=version_value^^account_type=account_ty
好吧,这就是我的困境: 我正在为 Reddit 子版 block 开发常见问题解答机器人。我在 bool 逻辑方面遇到了麻烦,需要一双更有经验的眼睛(这是我在 Python 中的第一次冒险)。现在,该
它首先遍历所有 y 值,然后遍历所有 x 值。我需要 X 和 y 同时改变。 For x = 3 To lr + 1 For y = 2 To lr anyl.Cells(x, 1)
假设我有一个包含 2 列的 Excel 表格:单元格 A1 到 A10 中的日期和 B1 到 B10 中的值。 我想对五月日期的所有值求和。我有3种可能性: {=SUM((MONTH(A1:A10)=
如何转换 Z-score来自 Z-distribution (standard normal distribution, Gaussian distribution)到 p-value ?我还没有找到
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我遇到过包含日期格式的时间戳日期的情况。然后我想构建一个图表,显示“点击”项目的数量“每天”, //array declaration $array1 = array("Date" => 0); $a
我是scala的新手! 我的问题是,是否有包含成员的案例类 myItem:Option[String] 当我构造类时,我需要将字符串内容包装在: Option("some string") 要么 So
我正在用 PHP 创建一个登录系统。我需要用户使用他或她的用户名或电子邮件或电话号码登录然后使用密码。因为我知道在 Java 中我们会像 email==user^ username == user 这
我在 C++ 项目上使用 sqlite,但是当我在具有文本值的列上使用 WHERE 时出现问题 我创建了一个 sqlite 数据库: CREATE TABLE User( id INTEGER
当构造函数是显式时,它不用于隐式转换。在给定的代码片段中,构造函数被标记为 explicit。那为什么在 foo obj1(10.25); 情况下它可以工作,而在 foo obj2=10.25; 情况
我知道这是一个主观问题,所以如果需要关闭它,我深表歉意,但我觉得它经常出现,让我想知道是否普遍偏爱一种形式而不是另一种形式。 显然,最好的答案是“重构代码,这样你就不需要测试是否存在错误”,但有时没有
这两个 jQuery 选择器有什么区别? 以下是来自 w3schools.com 的定义: [attribute~=value] 选择器选择带有特定属性,其值包含特定字符串。 [attribute*=
为什么我们需要CSS [attribute|=value] Selector根本当 CSS3 [attribute*=value] Selector基本上完成相同的事情,浏览器兼容性几乎相似?是否存在
我正在解决 regx 问题。我已经有一个像这样的 regx [0-9]*([.][0-9]{2})。这是 amont 格式验证。现在,通过此验证,我想包括不应提供 0 金额。比如 10 是有效的,但
我正在研究计算机科学 A 考试的样题,但无法弄清楚为什么以下问题的正确答案是正确的。 考虑以下方法。 public static void mystery(List nums) { for (
好的,我正在编写一个 Perl 程序,它有一个我收集的值的哈希值(完全在一个完全独立的程序中)并提供给这个 Perl 脚本。这个散列是 (string,string) 的散列。 我想通过 3 种方式对
我有一个表数据如下,来自不同的表。仅当第三列具有值“债务”并且第一列(日期)具有最大值时,我才想从第四列中获取最大值。最终值基于 MAX(DATE) 而不是 MAX(PRICE)。所以用简单的语言来说
我有一个奇怪的情况,只有错误状态保存到数据库中。当“状态”应该为 true 时,我的查询仍然执行 false。 我有具有此功能的 Controller public function change_a
我有一个交易表(针对所需列进行了简化): id client_id value 1 1 200 2 2 150 3 1
我是一名优秀的程序员,十分优秀!