IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

NetBeans Platform Java Discussion :

Netbeans + Mysql


Sujet :

NetBeans Platform Java

  1. #1
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut Netbeans + Mysql
    Bonjour,

    Dans le cadre de mes études j'ai une applicationt à réaliser mais je rencontre énormément de problème. J'ai pu me connecter à ma base de donnée grâce à l'extension pour java(msql). Je peux me connecter à ma base de donnée et faire des requêtes sans problème. Mais étant débutante sous Java. Je ne sais pas comment intégré dans mon onglet "source". Les informations qui sont dans ma base de donnée dans les JComboBox j'en possède 7 au total.

    Merci encore.

  2. #2
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    La librairie permettant de se connecter à MySQL (connectorJ) permet également, entre autre, de réaliser les fonction d'utilisation (create read update delete).

    https://docs.oracle.com/javase/tutor...ics/index.html

    C'est un standard, donc aucunement lié à netbeans
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  3. #3
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Oui mais maintenant j'ai l'erreur suivante :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Thu May 03 09:25:39 CEST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
    Je crois que mon Wampserver pète un plomb.

  4. #4
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    ajoute le param useSSL=false dans ta connection string
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  5. #5
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Excuse-moi mais ou je le met extactement (désolé je suis débutante) @_@

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javafx.scene.control.Alert;
    import myadressip.Connexion;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Logiciel extends javax.swing.JFrame 
    {
        /**
         * con
         */
        Connexion con=null;
     
        /**
         * pst
         */
        PreparedStatement pst = null;
     
        /**
         * rs
         */
        ResultSet rs = null;
     
        /**
         * Creates new form Logiciel
         */
        public Logiciel()
        { 
            initComponents();
     
            String id_loc="";
            String cp="";
            String commune="";
     
            try
            {
                this.con=new Connexion("jdbc:mysql://localhost:3308/mysql","root","");
                this.pst = this.con.connexion.prepareStatement("select id_loc, CP, Commune from localisation");
                this.rs=this.pst.executeQuery();
     
                while(rs.next())
                {
                    id_loc = this.rs.getString("id_loc");
                    cp = this.rs.getString("CP");
                    commune = this.rs.getString("Commune");
     
                    this.box_localisation.addItem(id_loc+cp+commune);
                }
            }
            catch(Exception ex)
            {
                String test = ex.getMessage();
            }
        }  
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel1 = new javax.swing.JLabel();
            box_localisation = new javax.swing.JComboBox<>();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("Localisation");
     
            box_localisation.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            box_localisation.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    box_localisationActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jLabel1)
                    .addGap(58, 58, 58)
                    .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(126, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(57, 57, 57)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(223, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void box_localisationActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Logiciel().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JComboBox<String> box_localisation;
        private javax.swing.JLabel jLabel1;
        // End of variables declaration                   
    }

  6. #6
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    jdbc:mysql://localhost:3308/mysql?useSSL=false

    Autre soucis:
    Avoir une classe qui mélange les responsabilités d'affichage, de traitement et de persistance n'est pas une bonne pratique.
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  7. #7
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Citation Envoyé par yildiz-online Voir le message
    jdbc:mysql://localhost:3308/mysql?useSSL=false

    Autre soucis:
    Avoir une classe qui mélange les responsabilités d'affichage, de traitement et de persistance n'est pas une bonne pratique.
    d'accord donc vous me conseillez je faire une autre classe mais je devrais "import" le fichier si j'ai bien compris ?
    Du coup j'ai tester
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    ("jdbc:mysql://localhost:3308/mydb?useSSL=false","root","")
    Je n'ai plus d'erreur mais je n'ai toujours pas accès au donnée de ma base mysql. Quand je déclenche le programme c'est toujours item 1,item 2 etc..

  8. #8
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    oui, une classe doit avoir une responsabilité unique. https://en.wikipedia.org/wiki/Separation_of_concerns

    Pour les résultats, faudrait déjà afficher le contenu de l'exception si il y en a une.

    catch(Exception ex)
    {
    String test = ex.getMessage();
    }
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  9. #9
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Il y en a pas vraiment de tout les tuto anglais ou français que j'ai pu regarder il mettait toujours cette ligne qui fait que je l'ai mise bêtement sans chercher.
    et
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    String test = ex.getMessage();
    cétait pour voir le message d'eereur car avant je n'avait aucun message d'erreur mais en débugant le code j'ai pu voir l'erreur du wamp qui était pas l'heure du coup je l'ai changer puis maintenant je n'ai aucun message qui m'indique ce qui cloche ou pas.

  10. #10
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    c'est juste une affectation, ça ne fait rien d'autres (si il y a vraiment des tutos qui proposent ça, il faut changer de site d'apprentissage au plus vite).

    Pour afficher, au pire, c'est e.printstacktrace() qui affichera dans la console.

    L'idéal c'est un logger qui persiste l'information dans un fichier pour consultation ultérieure.
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  11. #11
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Ok une autre question si je comprend bien si je dois faire une classe = une action alors je dois faire la même pour l'interface et les items que je met à l'interieur ?

  12. #12
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    Non, une classe = une responsabilité, une responsabilité peut englober plusieurs actions (comme créer lire et écrire dans un fichier)
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  13. #13
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Oui d'accord je comprend mieux je vais mettre de l'ordre dans met classe mais c'est quoi la différence entre une entité classe et classe JAVA ?

  14. #14
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    Au niveau du langage, le concept d'entité n'existe pas, c'est uniquement propre a certains frameworks
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  15. #15
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Ok très bien. Donc la j'ai fait proprement j'ai retiré tout ce qui était dans le source du logiciel et j'ai une classe propre à l'interface. Mais le programme m'affiche une erreur sachant que quand je debug le logiciel dit sucess mais je pense que c'est une histoire de parenthèse. Pour l'instant j'en suis la mais mon Jcombo box ne se connecte pas j'ai trouvé cette documentation https://docs.oracle.com/javase/tutor.../combobox.html mais je pense manqué de connaissance.

    myadressip.interface
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import myadressip.Connexion;
    import myadressip.Logiciel;
    import myadressip.Localisation;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Interface {    
     
      /**
         * con
         */
        Connexion con=null;
     
        /**
         * pst
         */
        PreparedStatement pst = null;
     
        /**
         * rs
         */
        ResultSet rs = null;
     
        /**
         * Creates new form Logiciel
         */
        public Interface()
     
        { 
            initComponents();
     
            String id_loc="";
            String cp="";
            String commune="";
     
            try
            {
                this.con=new Connexion("jdbc:mysql://localhost:3308/mydb?useSSL=false","root","");
                this.pst = this.con.connexion.prepareStatement("select id_loc, CP, Commune from localisation");
                this.rs=this.pst.executeQuery();
     
                while(rs.next())
                {
                    id_loc = this.rs.getString("id_loc");
                    cp = this.rs.getString("CP");
                    commune = this.rs.getString("Commune");
     
                    this.box_localisation.addItem(id_loc+cp+commune);
     
                }
            } catch (Exception e) {
     
            }
        }
    La table que je souhaite intégré
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.io.Serializable;
    import java.util.Collection;
    import javax.persistence.Basic;
    import javax.persistence.CascadeType;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.NamedQueries;
    import javax.persistence.NamedQuery;
    import javax.persistence.OneToMany;
    import javax.persistence.Table;
    import javax.xml.bind.annotation.XmlRootElement;
    import javax.xml.bind.annotation.XmlTransient;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    @Entity
    @Table(name = "localisation")
    @XmlRootElement
    @NamedQueries({
        @NamedQuery(name = "Localisation.findAll", query = "SELECT l FROM Localisation l")
        , @NamedQuery(name = "Localisation.findByIdLoc", query = "SELECT l FROM Localisation l WHERE l.idLoc = :idLoc")
        , @NamedQuery(name = "Localisation.findByCp", query = "SELECT l FROM Localisation l WHERE l.cp = :cp")
        , @NamedQuery(name = "Localisation.findByCommune", query = "SELECT l FROM Localisation l WHERE l.commune = :commune")})
    public class Localisation implements Serializable {
     
        private static final long serialVersionUID = 1L;
        @Id
        @Basic(optional = false)
        @Column(name = "id_loc")
        private Integer idLoc;
        @Column(name = "CP")
        private String cp;
        @Column(name = "Commune")
        private String commune;
        @OneToMany(cascade = CascadeType.ALL, mappedBy = "localisation")
        private Collection<Ecole> ecoleCollection;
     
        public Localisation() {
        }
     
        public Localisation(Integer idLoc) {
            this.idLoc = idLoc;
        }
     
        public Integer getIdLoc() {
            return idLoc;
        }
     
        public void setIdLoc(Integer idLoc) {
            this.idLoc = idLoc;
        }
     
        public String getCp() {
            return cp;
        }
     
        public void setCp(String cp) {
            this.cp = cp;
        }
     
        public String getCommune() {
            return commune;
        }
     
        public void setCommune(String commune) {
            this.commune = commune;
        }
     
        @XmlTransient
        public Collection<Ecole> getEcoleCollection() {
            return ecoleCollection;
        }
     
        public void setEcoleCollection(Collection<Ecole> ecoleCollection) {
            this.ecoleCollection = ecoleCollection;
        }
     
        @Override
        public int hashCode() {
            int hash = 0;
            hash += (idLoc != null ? idLoc.hashCode() : 0);
            return hash;
        }
     
        @Override
        public boolean equals(Object object) {
            // TODO: Warning - this method won't work in the case the id fields are not set
            if (!(object instanceof Localisation)) {
                return false;
            }
            Localisation other = (Localisation) object;
            if ((this.idLoc == null && other.idLoc != null) || (this.idLoc != null && !this.idLoc.equals(other.idLoc))) {
                return false;
            }
            return true;
        }
     
        @Override
        public String toString() {
            return "myadressip.Localisation[ idLoc=" + idLoc + " ]";
        }
     
    }
    myadressip.connexion
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Connexion
    {
        /**
         * url
         */
        String url = "";
     
        String utilisateur = "";
     
        String motDePasse = "";
     
        Connection connexion = null;
     
        /**
         * Connexion
         * 
         * @param url
         * @param utilisateur
         * @param motDePasse 
         */
        Connexion(String url, String utilisateur, String motDePasse)
        {
            this.url=url;
            this.utilisateur=utilisateur;
            this.motDePasse=motDePasse;
     
            try
            {
                this.connexion=DriverManager.getConnection(this.url, this.utilisateur, this.motDePasse);
            } 
            catch(SQLException e)
            {
                /* Gérer les éventuelles erreurs ici */
                String erreur=e.getMessage();
     
                String test= erreur;
            } 
        }
    }
    Et le source du logiciel
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javafx.scene.control.Alert;
    import myadressip.Connexion;
    import myadressip.Interface;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Logiciel extends javax.swing.JFrame 
    {
     
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel1 = new javax.swing.JLabel();
            box_localisation = new javax.swing.JComboBox<>();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("Localisation");
     
            box_localisation.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            box_localisation.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    box_localisationActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jLabel1)
                    .addGap(58, 58, 58)
                    .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(126, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(57, 57, 57)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(223, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void box_localisationActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Logiciel().setVisible(true);
                }
     
     
        }
    }
     
        // Variables declaration - do not modify                     
        private javax.swing.JComboBox<String> box_localisation;
        private javax.swing.JLabel jLabel1;
        // End of variables declaration                   
    }

  16. #16
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    La séparation des responsabilités n'est pas complètement faite, si tu as des packages sql et javafx dans la même classe, quelque chose cloche.
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  17. #17
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    Ok dans mon source logiciel il me reste que connexion

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
     
    import myadressip.Connexion;
     
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Logiciel extends javax.swing.JFrame 
    {
     
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel1 = new javax.swing.JLabel();
            box_localisation = new javax.swing.JComboBox<>();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("Localisation");
     
            box_localisation.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            box_localisation.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    box_localisationActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jLabel1)
                    .addGap(58, 58, 58)
                    .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(126, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(57, 57, 57)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(223, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void box_localisationActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Logiciel().setVisible(true);
                }
     
     
        }
    }
     
        // Variables declaration - do not modify                     
        private javax.swing.JComboBox<String> box_localisation;
        private javax.swing.JLabel jLabel1;
        // End of variables declaration                   
    }

  18. #18
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    Tu affiches le formulaire, il te reste à l'initialiser et à récupérer les infos depuis la persistence.

    Pourquoi mélanges-tu du JDBC et du JPA?
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

  19. #19
    Futur Membre du Club Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 29
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Points : 8
    Points
    8
    Par défaut
    C'est bon je l'ai initiniaisé je pense. Il n'est pas interdit de mettre les deux il me semble.
    J'ai besoin du Jdbc quand même lol pour ma base mysql mais le jda on m'a jamais dit que c'était interdit de mettre les deux.

  20. #20
    Expert confirmé Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 444
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 444
    Points : 4 563
    Points
    4 563
    Par défaut
    Ce n'est pas interdit de mettre de la mayonnaise et de la confiture ensemble, mais ce n'est pas pour autant une bonne idée.

    Ta classe avec les annotations JPA ne sert à rien si tu n'as pas de contexte de persistence pour l'utiliser.
    PXL le retro-gaming facile: Essayez-le

    Yildiz-Engine an open-source modular game engine: Website
    Yildiz-Online a 3D MMORTS in alpha: Facebook page / Youtube page

Discussions similaires

  1. Manipulation des tables Java-netbeans mysql
    Par UncleSamzer dans le forum JDBC
    Réponses: 1
    Dernier message: 12/08/2017, 18h15
  2. jframe bouton modifier:netbeans mysql
    Par ibrahima lamine dans le forum NetBeans
    Réponses: 1
    Dernier message: 28/09/2015, 15h18
  3. NetBeans MySQL javax.naming.NamingException
    Par bellouk dans le forum JPA
    Réponses: 0
    Dernier message: 26/11/2012, 11h01
  4. NetBeans, MySQL server et JDBC
    Par badoumba dans le forum NetBeans
    Réponses: 3
    Dernier message: 05/04/2012, 08h23
  5. Réponses: 5
    Dernier message: 18/10/2007, 14h40

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo