-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 
Author Message
 Post subject: Date avant insertion != Date apres insertion
PostPosted: Mon Mar 02, 2009 4:11 pm 
Newbie

Joined: Mon Mar 02, 2009 3:57 pm
Posts: 3
Bonjour,

Je debute un peu en hibernate 3 et je suis actuellement face un petit probleme. Je constate que lorsque je sauve un objet contenant un attribut de type java.util.Date ds ma db mysql. Je recois apres avoir rechargé l'objet une date dont l'implementation est différente java.sql.Timestamp (jusque la pas de problème) mais qui n'a pas la mm valeur ! Il y a une perte de precision ...

2009-02-27 23:19:20 DEBUG [ProduitDAOTest] saveProduit.getDate() : (class java.sql.Timestamp)1235773160000
2009-02-27 23:19:20 DEBUG [ProduitDAOTest] defaultTestProduit.getDate() : (class java.util.Date)1235773160812

assertEquals(defaultTestProduit.getDate().getTime(),saveProduit.getDate().getTime());

et du coup mon test unitaire ne passe pas ...

voici la partie du hbm concernée:
Code:
<property name="date" type="timestamp">
      <column length="19" name="date" not-null="true"/>
</property>



et voici ma table mysl :


Code:
CREATE TABLE IF NOT EXISTS `produit` (
  `reference` varchar(32) NOT NULL DEFAULT '',
  `nom` varchar(255) NOT NULL DEFAULT '',
  `id_designer` int(11) DEFAULT NULL,
  `nouveaute` tinyint(1) NOT NULL,
  `lieuCreation` varchar(255) DEFAULT NULL,
  `description` text,
  `mesure` text,
  `visible` tinyint(1) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `type` enum('lighting','tables','casePieces','seating','accessories','miscellaneous') DEFAULT NULL,
  `photo_principale_id` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `reference` (`reference`),
  UNIQUE KEY `photo_principale_id` (`photo_principale_id`),
  KEY `id_designer` (`id_designer`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4916 ;


et voici ma classe java:
Code:
package be.vincentcolet.domaine;
// Generated 07-f�vr.-2009 0:00:37 by Hibernate Tools 3.2.1.GA

import be.vincentcolet.domaine.type.TypeProduit;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;

/**
* Produit generated by hbm2java
*/
public class Produit  implements java.io.Serializable {


     private Integer id;
     private Photo photo;
     private Designer designer;
     private String reference;
     private String nom;
     private boolean nouveaute;
     private String lieuCreation;
     private String description;
     private String mesure;
     private boolean visible;
     private Date date;
     private String type;
     private Set<Photo> photos = new HashSet<Photo>(0);
     

    public Produit() {
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final Produit other = (Produit) obj;
        if ((this.reference == null) ? (other.reference != null) : !this.reference.equals(other.reference)) {
            return false;
        }
        return true;
    }

    @Override
    public int hashCode() {
        int hash = 5;
        hash = 47 * hash + (this.reference != null ? this.reference.hashCode() : 0);
        return hash;
    }

   



    public Integer getId() {
        return this.id;
    }
   
    public void setId(Integer id) {
        this.id = id;
    }
    public Photo getPhoto() {
        return this.photo;
    }
   
    public void setPhoto(Photo photo) {
        this.photo = photo;
    }
    public Designer getDesigner() {
        return this.designer;
    }
   
    public void setDesigner(Designer designer) {
        this.designer = designer;
    }
    public String getReference() {
        return this.reference;
    }
   
    public void setReference(String reference) {
        this.reference = reference;
    }
    public String getNom() {
        return this.nom;
    }
   
    public void setNom(String nom) {
        this.nom = nom;
    }
    public boolean getNouveaute() {
        return this.nouveaute;
    }
   
    public void setNouveaute(boolean nouveaute) {
        this.nouveaute = nouveaute;
    }
    public String getLieuCreation() {
        return this.lieuCreation;
    }
   
    public void setLieuCreation(String lieuCreation) {
        this.lieuCreation = lieuCreation;
    }
    public String getDescription() {
        return this.description;
    }
   
    public void setDescription(String description) {
        this.description = description;
    }
    public String getMesure() {
        return this.mesure;
    }
   
    public void setMesure(String mesure) {
        this.mesure = mesure;
    }
    public boolean getVisible() {
        return this.visible;
    }
   
    public void setVisible(boolean visible) {
        this.visible = visible;
    }
    public Date getDate() {
        return this.date;
    }
   
    public void setDate(Date date) {
        this.date = date;
    }

    @Deprecated
    public String getType() {
        return this.type;
    }

    public TypeProduit getTypeProduit(){
        return TypeProduit.valueOfEnum(type);
    }

    @Deprecated
    public void setType(String type) {
        this.type = type;
    }

    public void setTypeProduit(TypeProduit typeProduit){
        this.type=typeProduit.getCodeTable();
    }

    public Set<Photo> getPhotos() {
        return this.photos;
    }
   
    public void setPhotos(Set<Photo> photos) {
        this.photos = photos;
    } 

}


J'ai un peu essayé les différents type de date ds mysql sans succés ... Quelqu'un aurait une idée pour moi ?
J'ai vraiment besoin de recupérer quelque chose d'identique car pour certains objets de mon domaine je devrai utiliser la date de creation de l'objet ds equals() et hashcode() car j'ai pas de "clé métier" et hibernate deconseille d'utiliser les id db (probleme avec les set ...) mais vu que la date que j'insere et celle que je recois sont différente je suis pas plus avancé avec les dates.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 03, 2009 10:25 am 
Regular
Regular

Joined: Mon Apr 19, 2004 6:54 pm
Posts: 79
Assure toi d'utiliser java.util.Date. Tes logs montrent un java.sql.Timestamp qui comporte les nanoseconds.

Christophe


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 03, 2009 10:52 am 
Newbie

Joined: Mon Mar 02, 2009 3:57 pm
Posts: 3
Oui en effet mais ca c'est l'objet retourné par hibernate mais ca ne pose pas de probleme car java.sql.Timestamp implemente java.util.Date ... les nanosecondes sont a zero car en fait ils ne sont pas enregistré ds la bd. Apparement mysql n'est pas capable d'enregistrer le temps en dessous de la seconde ... :(


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 12, 2009 1:28 pm 
Beginner
Beginner

Joined: Fri May 14, 2004 9:50 am
Posts: 28
As-tu essayé de mettre comme type date à la place de timestamp dans ton mapping ?

_________________
Eric

http://www.viaxoft.com
http://blog.viaxoft.net


Top
 Profile  
 
 Post subject: Brass air fittings
PostPosted: Thu Mar 19, 2009 9:17 pm 
Newbie

Joined: Thu Mar 19, 2009 8:44 pm
Posts: 2
Now that is a lot of brass air fittings http://www.liangdianup.com/subpages/airfitting_1.htm there is just about every type
of air fitting that you could want. Wholesale prices too. I guess these could be used as small water pipe fitting also. I
used some of the parts to make my babington wvo burner.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 09, 2009 4:46 am 
Newbie

Joined: Thu Apr 09, 2009 4:32 am
Posts: 1
Merci, c'est justement ce que je cherchais :P

dossier de surendettement


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.