- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在开发一个使用 hibernate 与 mysql 进行 OR 映射的项目。我只希望 nom 、 Phone、 adresse 和 date_modification 得到更新,但所有字段都得到更新。我不知道我哪里错了。请帮我解决这个问题。以下是我编写的操作类:
测试.java
public class Test {
static ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[]{"applicationContext.xml"});
/**
* @param args
*/
public static void main(String[] args) {
ajouterFournisseur("Fournisseur 1", "23421567", "ville 1", "rue 1", "4321");
ajouterFournisseur("Fournisseur 2", "23421567", "ville 2", "rue 2", "4322");
ajouterFournisseur("Fournisseur 3", "23421567", "ville 3", "rue 3", "4323");
modifierFournisseur("1", "1", "Fournisseur 11", "21345678", "Ville 11", "Rue 11", "4212");
listeFournisseur();
}
public static void ajouterFournisseur(String nom, String telephone, String ville, String rue, String code_postal) {
IFournisseurMetier metierFournisseur = (IFournisseurMetier) context.getBean("metierFournisseur");
IAdresseMetier metierAdresse = (IAdresseMetier) context.getBean("metierAdresse");
List<Fournisseurs> fournisseurs1 = metierFournisseur.listFournisseurs();
FournisseurForm fournisseurForm = new FournisseurForm(metierFournisseur);
AdresseForm adresseForm = new AdresseForm(metierAdresse);
fournisseurForm.creerFournisseur(nom, telephone, adresseForm.creerAdresse(ville, rue, code_postal));
List<Fournisseurs> fournisseurs2 = metierFournisseur.listFournisseurs();
System.out.println("etat ajouter Fournisseur: "+(fournisseurs2.size()==fournisseurs1.size()+3));
}
private static void modifierFournisseur(String id_fournisseur, String id_adresse,
String nom_fournisseur, String telephone, String ville, String rue, String code_postal) {
IFournisseurMetier metierFournisseur = (IFournisseurMetier) context.getBean("metierFournisseur");
IAdresseMetier metierAdresse = (IAdresseMetier) context.getBean("metierAdresse");
FournisseurForm fournisseurForm = new FournisseurForm(metierFournisseur);
AdresseForm adresseForm = new AdresseForm(metierAdresse);
fournisseurForm.modifierFournisseur(id_fournisseur, nom_fournisseur, telephone, adresseForm.modifierAdresse(id_adresse, ville, rue, code_postal));
if(adresseForm.getErreurs() != null){
if(adresseForm.getErreurs().get("ville") != null){
System.out.println((fournisseurForm.getErreurs().get("ville")));
}
if(adresseForm.getErreurs().get("rue") != null){
System.out.println((fournisseurForm.getErreurs().get("rue")));
}
if(adresseForm.getErreurs().get("code_postal") != null){
System.out.println((fournisseurForm.getErreurs().get("code_postal")));
}
}
if((fournisseurForm.getErreurs() != null)){
if(fournisseurForm.getErreurs().get("nom") != null){
System.out.println((fournisseurForm.getErreurs().get("nom")));
}
if(fournisseurForm.getErreurs().get("telephone") != null){
System.out.println((fournisseurForm.getErreurs().get("telephone")));
}
}
else{
System.out.println(( fournisseurForm.getResultat()));
}
}
private static void listeFournisseur() {
IFournisseurMetier metierFournisseur = (IFournisseurMetier) context.getBean("metierFournisseur");
for(Fournisseurs fournisseur : metierFournisseur.listFournisseurs()){
if(fournisseur!=null)
System.out.println("Id_fournisseur: "+fournisseur.getId_fournisseur());
System.out.println("Nom: "+fournisseur.getNom());
System.out.println("Telephone: "+fournisseur.getTelephone());
System.out.println("Ville: "+fournisseur.getAdresse().getVille());
System.out.println("Rue: "+fournisseur.getAdresse().getRue());
System.out.println("Code postal: "+fournisseur.getAdresse().getCode_postal());
System.out.println("date d'ajout: "+fournisseur.getDate_ajout());
System.out.println("date modification: "+fournisseur.getDate_modification());
System.out.println("-----------------");
}
}
}
FournisseurDaoImpl.java
public class FournisseurDaoImpl implements IFournisseurDao {
public Long ajouterFournisseur(Fournisseurs fournisseur) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
session.save(fournisseur);
session.beginTransaction().commit();
return fournisseur.getId_fournisseur();
}
public void modifierFournisseur(Fournisseurs fournisseur) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
session.update(fournisseur);
session.beginTransaction().commit();
}
public void supprimerFournisseur(Long idFournisseur) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
Articles article = (Articles) session.load(Articles.class, idFournisseur);
session.delete(article);
session.beginTransaction().commit();
}
public List<Fournisseurs> listFournisseurs() {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
@SuppressWarnings("unchecked")
List<Fournisseurs> result = session.createQuery("from Fournisseurs").list();
for (Fournisseurs fournisseur : result) {
Hibernate.initialize(fournisseur.getAdresse());
}
session.getTransaction().commit();
return result;
}
public Fournisseurs trouverFournisseurParId(Long idFournisseur) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
return (Fournisseurs) session.get(Fournisseurs.class, idFournisseur);
}
public Fournisseurs trouverFournisseurParNom(String nom_fournisseur) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
Criteria criteria = session.createCriteria(Fournisseurs.class);
criteria.add(Restrictions.like("nom", nom_fournisseur));
return (Fournisseurs) criteria.uniqueResult();
}
}
结果:
INFO : org.springframework.context.support.ClassPathXmlApplicationContext - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@190d1e8: startup date [Fri Nov 11 14:45:41 WAT 2016]; root of context hierarchy
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [applicationContext.xml]
INFO : org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
INFO : org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@18da386: defining beans [datasource,persistenceUnitManager,entityManagerFactory,transactionManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,daoUtilisateur,metierUtilisateur,daoFournisseur,metierFournisseur,daoArticle,metierArticle,daoEntree,metierEntree,daoSortie,metierSortie,daoAdresse,metierAdresse,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
WARN : org.hibernate.util.DTDEntityResolver - recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: insert into ADRESSE (VILLE, RUE, CODE_POSTAL) values (?, ?, ?)
Hibernate: select this_.ID_FOURNISSEUR as ID1_26_0_, this_.NOM as NOM26_0_, this_.TELEPHONE as TELEPHONE26_0_, this_.DATE_AJOUT as DATE4_26_0_, this_.DATE_MODIFICATION as DATE5_26_0_, this_.id_adresse as id6_26_0_ from FOURNISSEURS this_ where this_.NOM like ?
Hibernate: insert into FOURNISSEURS (NOM, TELEPHONE, DATE_AJOUT, DATE_MODIFICATION, id_adresse) values (?, ?, ?, ?, ?)
Hibernate: update ADRESSE set VILLE=?, RUE=?, CODE_POSTAL=? where ID_ADRESSE=?
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
etat ajouter Fournisseur: false
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: insert into ADRESSE (VILLE, RUE, CODE_POSTAL) values (?, ?, ?)
Hibernate: select this_.ID_FOURNISSEUR as ID1_26_0_, this_.NOM as NOM26_0_, this_.TELEPHONE as TELEPHONE26_0_, this_.DATE_AJOUT as DATE4_26_0_, this_.DATE_MODIFICATION as DATE5_26_0_, this_.id_adresse as id6_26_0_ from FOURNISSEURS this_ where this_.NOM like ?
Hibernate: insert into FOURNISSEURS (NOM, TELEPHONE, DATE_AJOUT, DATE_MODIFICATION, id_adresse) values (?, ?, ?, ?, ?)
Hibernate: update ADRESSE set VILLE=?, RUE=?, CODE_POSTAL=? where ID_ADRESSE=?
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
etat ajouter Fournisseur: false
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: insert into ADRESSE (VILLE, RUE, CODE_POSTAL) values (?, ?, ?)
Hibernate: select this_.ID_FOURNISSEUR as ID1_26_0_, this_.NOM as NOM26_0_, this_.TELEPHONE as TELEPHONE26_0_, this_.DATE_AJOUT as DATE4_26_0_, this_.DATE_MODIFICATION as DATE5_26_0_, this_.id_adresse as id6_26_0_ from FOURNISSEURS this_ where this_.NOM like ?
Hibernate: insert into FOURNISSEURS (NOM, TELEPHONE, DATE_AJOUT, DATE_MODIFICATION, id_adresse) values (?, ?, ?, ?, ?)
Hibernate: update ADRESSE set VILLE=?, RUE=?, CODE_POSTAL=? where ID_ADRESSE=?
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
etat ajouter Fournisseur: false
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_0_, adresse0_.VILLE as VILLE22_0_, adresse0_.RUE as RUE22_0_, adresse0_.CODE_POSTAL as CODE4_22_0_ from ADRESSE adresse0_ where adresse0_.ID_ADRESSE=?
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_1_, fournisseu0_.NOM as NOM26_1_, fournisseu0_.TELEPHONE as TELEPHONE26_1_, fournisseu0_.DATE_AJOUT as DATE4_26_1_, fournisseu0_.DATE_MODIFICATION as DATE5_26_1_, fournisseu0_.id_adresse as id6_26_1_, adresse1_.ID_ADRESSE as ID1_22_0_, adresse1_.VILLE as VILLE22_0_, adresse1_.RUE as RUE22_0_, adresse1_.CODE_POSTAL as CODE4_22_0_ from FOURNISSEURS fournisseu0_ left outer join ADRESSE adresse1_ on fournisseu0_.id_adresse=adresse1_.ID_ADRESSE where fournisseu0_.ID_FOURNISSEUR=?
Hibernate: update ADRESSE set VILLE=?, RUE=?, CODE_POSTAL=? where ID_ADRESSE=?
Hibernate: select this_.ID_FOURNISSEUR as ID1_26_0_, this_.NOM as NOM26_0_, this_.TELEPHONE as TELEPHONE26_0_, this_.DATE_AJOUT as DATE4_26_0_, this_.DATE_MODIFICATION as DATE5_26_0_, this_.id_adresse as id6_26_0_ from FOURNISSEURS this_ where this_.NOM like ?
Hibernate: update FOURNISSEURS set NOM=?, TELEPHONE=?, DATE_AJOUT=?, DATE_MODIFICATION=?, id_adresse=? where ID_FOURNISSEUR=?
Hibernate: update ADRESSE set VILLE=?, RUE=?, CODE_POSTAL=? where ID_ADRESSE=?
Hibernate: update ARTICLES set ID_FOURNISSEUR=null where ID_FOURNISSEUR=?
Hibernate: select fournisseu0_.ID_FOURNISSEUR as ID1_26_, fournisseu0_.NOM as NOM26_, fournisseu0_.TELEPHONE as TELEPHONE26_, fournisseu0_.DATE_AJOUT as DATE4_26_, fournisseu0_.DATE_MODIFICATION as DATE5_26_, fournisseu0_.id_adresse as id6_26_ from FOURNISSEURS fournisseu0_
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Hibernate: select adresse0_.ID_ADRESSE as ID1_22_1_, adresse0_.VILLE as VILLE22_1_, adresse0_.RUE as RUE22_1_, adresse0_.CODE_POSTAL as CODE4_22_1_, fournisseu1_.ID_FOURNISSEUR as ID1_26_0_, fournisseu1_.NOM as NOM26_0_, fournisseu1_.TELEPHONE as TELEPHONE26_0_, fournisseu1_.DATE_AJOUT as DATE4_26_0_, fournisseu1_.DATE_MODIFICATION as DATE5_26_0_, fournisseu1_.id_adresse as id6_26_0_ from ADRESSE adresse0_ left outer join FOURNISSEURS fournisseu1_ on adresse0_.ID_ADRESSE=fournisseu1_.ID_FOURNISSEUR where adresse0_.ID_ADRESSE=?
Id_fournisseur: 1
Nom: Fournisseur 11
Telephone: 21345678
Ville: Ville 11
Rue: Rue 11
Code postal: 4212
date d'ajout: null
date modification: 2016-11-11 14:45:46.0
-----------------
Id_fournisseur: 2
Nom: Fournisseur 2
Telephone: 23421567
Ville: ville 2
Rue: rue 2
Code postal: 4322
date d'ajout: 2016-11-11 14:45:46.0
date modification: 2016-11-11 14:45:46.0
-----------------
Id_fournisseur: 3
Nom: Fournisseur 3
Telephone: 23421567
Ville: ville 3
Rue: rue 3
Code postal: 4323
date d'ajout: 2016-11-11 14:45:46.0
date modification: 2016-11-11 14:45:46.0
-----------------
在我的 Eclipse 控制台中,所有字段都在更新。像这样:
Hibernate: update FOURNISSEURS set NOM=?, TELEPHONE=?, DATE_AJOUT=?, DATE_MODIFICATION=?, id_adresse=? where ID_FOURNISSEUR=?
最佳答案
在调用 modifierFournisseur(Fournisseurs fournisseur)
时,创建 Fournisseurs
的新对象,并设置 Id 和要更新的相应字段。
它应该只更新您在附加的 JPA 对象中设置的字段。
关于java - 通过 hibernate 仅更新选定的字段,而不更新数据库中的所有列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40549461/
我有十二个指向不同类别的链接。作为用户定位的一种方式,我想强调用户现在所在的类别( - 按钮)。 如何在 CSS 中实现这一点?我读到了 selected和 active ,但我还没能让它发挥作用。
我想通过单击按钮来获取选择框中的所有选项值(选定/未选定)。我怎样才能做到这一点? 最佳答案 我认为这是使用 Traversing/map 的好机会方法: var valuesArray = $("#
我正在尝试构建一个计算器,其中包含两个数字的两个 TextView 字段。我弄清楚了如何使用“应用程序内”数字键盘输入顶部数字 Operand 1 [textView] 的数字(我知道使用 EditT
我有一个简单的 jQuery $("span.value"),它选择包含文本的节点。此文本保证为整数。如何计算所有选定节点文本的总和,并将总和放入另一个节点? 3 4 5 ? 最佳答案 你可以这样做:
我从同一台服务器上托管的一堆数据库中备份了 mysql 数据库 db1。现在只需要备份具有访问 db1 权限的选定用户,以便我可以在 db1 还原之前将这些特权用户还原到我的新服务器。 最佳答案 St
我有一个 ListView 。我想添加一个动画,如果我选择一个列表项,它将被删除,并且该项目下方的其余项目将通过向上滑动动画向上移动。我已经通过获取其子位置使用线性布局完成了此操作,但我无法理解如何向
我不明白如何使用 Python 解析来自 Outlook 的突出显示(选定)邮件? 我有这个代码,但它适用于上一封邮件。 import win32com.client outlook = win32c
在 Xcode 6 中,您现在可以为选项卡项目的选中和未选中状态设置图标。请参阅下图中的说明: 和 唯一的问题是 SELECTED 状态的图像不显示。它只是显示空白。还有其他人有这个问题吗?请看下面的
在我的数据模型中,我有一个实体组和另一个GroupMember实体。一个Group包含一个或多个GroupMembers,但一个GroupMember只能同时位于一个Group中。到目前为止没有问题,
Android Button 在不同状态(正常、按下、选中、禁用)之间移动时会更改其可绘制背景。背景切换是即时的。是否可以使其平滑(动画)? 最佳答案 是的,这是可能的。您只需为按钮添加 addAni
我使用 emacs 来查看和编辑代码和其他文本文件。我想知道是否有一种方法可以向前或向后搜索当前缓冲区中标记的文本。类似于我在记事本或写字板中可以执行的操作。就像我可以在缓冲区中标记一些文本并执行 C
如何根据状态(选定、禁用)设置自定义选择类?如何根据状态选择(选定、禁用)在自定义下拉列表中设置类?照做了,但什么也没发生。请看我的例子................................
我正在尝试检查下拉菜单中是否存在特定文本值,如果存在,我想将其属性设置为selected。 我成功编写了一个 if 语句来检查文本是否存在: var country = usr.location; i
对于我的应用程序,我想让用户能够在回收器 View 中调整 TextView 项目的文本大小(通过捏缩放或 SeekBar)。默认值应为系统设置中选择的文本大小。最小值应为系统设置中的“非常小”,最大
我正在尝试创建一个 ListBoxItem 模板,该模板在选择时将带有圆角边框。我得到了这个 xaml,它在选择时不起作用:
我正在寻找检索焦点元素的 HTML。查看 webdriver.io 文档,方法 .getActiveElement() 应该可以解决这个问题。但是,我的 IDE (WebStorm) 显示错误,指出它
我创建了一个圆,在我的 onDraw() 方法中围绕圆绘制了一条字符串和一条线(箭头)。 public class Circle extends Activity { public class
对于生产应用程序,我们希望在 Windows 窗体应用程序的 ElementHost 内显示 DatePicker,但我们遇到了 SelectedDate 和 CurrentDate 不可读的问题,因
好的,我在此处和 Google 上的许多网站上搜索了此问题的结果,但找不到针对我的问题的确切解决方案。 我有一个 sql 提取姓名和办公室。所以事情是这样的: $sql = "SELECT m
选中单元格时如何改变灰色? 最佳答案 当用户点击选中的行 (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSInd
我是一名优秀的程序员,十分优秀!