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

Servlets/JSP Java Discussion :

Caster une Interface


Sujet :

Servlets/JSP Java

  1. #1
    Membre actif
    Avatar de fabou3377
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    182
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Juillet 2006
    Messages : 182
    Points : 280
    Points
    280
    Par défaut Caster une Interface
    Bonjour,

    j'ai une interface Command() possédant qu'une seule métode execute();
    J'impémente différente classe avec cette interface

    NullCommand
    AbortCommand...


    Dans une table sql selon le module et la tâche choisie je renvoie la commande à entreprendre... J'effectue l'opération dans la procédure ci-dessous se trouvant dans servelt contrôlleur:

    J'ai une erreur sur return (Command) a.getCmd(); -->incompatibles types..

    Pourquoi?

    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
     
    private Command getCommand(String mod, String task)throws CommandException
        {
            if(mod!=null)
            {
                if(task!=null)
                {
                ActionsDao actionDao = ActionsDao.getInstance();
                ArrayList actions = actionDao.getActions();    
                Action a= (Action) actions.get(0);                   
                return (Command) a.getCmd();
     
                }
                else
                {
                     throw new CommandException("Aucun paramètre"); 
                }
            }
     
        }

  2. #2
    Membre éprouvé
    Avatar de yolepro
    Profil pro
    Architecte de système d'information
    Inscrit en
    Mai 2002
    Messages
    918
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Architecte de système d'information

    Informations forums :
    Inscription : Mai 2002
    Messages : 918
    Points : 1 144
    Points
    1 144
    Par défaut
    Bonjour,

    Tu confonds Interface et classe abstraite.

    Une interface ne contient pas d'implémentation.

    De plus tu ne peux pas Caster une interface.

    Enfin, il manque dans ton explication l'implémentation de l'endroit de l'appel ou se produit l'erreur.
    Actuellement, il me parait difficile de t'aider.

    PS : cf plus bas, ce post est HS

  3. #3
    Membre actif Avatar de coco62
    Profil pro
    Inscrit en
    Mars 2004
    Messages
    237
    Détails du profil
    Informations personnelles :
    Âge : 53
    Localisation : France

    Informations forums :
    Inscription : Mars 2004
    Messages : 237
    Points : 278
    Points
    278
    Par défaut
    Je ne voit pas ce qui te fait dire que Command est une classe abstraite plutôt qu'une interface.

    il faudrait voir l'implentation de "a.getCmd"
    Dans tout les cas , ce n'est pas un Command

  4. #4
    Membre éprouvé
    Avatar de yolepro
    Profil pro
    Architecte de système d'information
    Inscrit en
    Mai 2002
    Messages
    918
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations professionnelles :
    Activité : Architecte de système d'information

    Informations forums :
    Inscription : Mai 2002
    Messages : 918
    Points : 1 144
    Points
    1 144
    Par défaut
    Citation Envoyé par coco62 Voir le message
    Je ne voit pas ce qui te fait dire que Command est une classe abstraite plutôt qu'une interface.

    il faudrait voir l'implentation de "a.getCmd"
    Dans tout les cas , ce n'est pas un Command
    Effectivement, j'ai lu son post un peu vite, je pensais que le bout de code qu'il montrait etait l'implémentation de sa classe Command (en gros je suis fatigué ).

    Donc merci de ne pas prendre en compte ma remarque avant qui est complètement HS.

  5. #5
    Membre expert
    Avatar de ®om
    Profil pro
    Inscrit en
    Janvier 2005
    Messages
    2 815
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2005
    Messages : 2 815
    Points : 3 080
    Points
    3 080
    Par défaut
    Que retourne Action#getCmd()?

  6. #6
    Membre actif
    Avatar de fabou3377
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    182
    Détails du profil
    Informations personnelles :
    Localisation : Suisse

    Informations forums :
    Inscription : Juillet 2006
    Messages : 182
    Points : 280
    Points
    280
    Par défaut
    Merci pour votre intérêt en gros je cherche à stock le nom de l'action à entreprendre dans ma table mysql et à le reprendre tel quel....

    Par exemple je stockerais le nom de NullCommand et lorsque je le récupère dans mon servlet principal j'aimerais l'éxécuter....

    Mon 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
     
    package basic.utils;
     
    import basic.utils.CommandException;
    import javax.servlet.*;
    import javax.servlet.http.*;
     
    public interface Command
    {        
        public void execute(HttpServletRequest request) throws CommandException; 
     
        public String getNextUrl();
     
        public void setNextUrl(String _url);
     
    }
    Ma classe gotoCmd
    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
     
     
    package basic.utils;
     
    import javax.servlet.*;
    import javax.servlet.http.*;
     
    public class gotoCmd implements Command
    {
    private String nextUrl;
     
        public void execute(HttpServletRequest request) throws CommandException
        {
     
        }
     
        public String getNextUrl()   
        {
            return nextUrl;
        }
     
        public void setNextUrl(String _nextUrl)
        {
            this.nextUrl=_nextUrl;
        }
    }
    Ma classe ActionsDao

    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
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
     
     
    /*
     * DaoPlannedOrder.java
     *dfdfdf
     
     * To change this template, choose Tools | Template Manager
     * and open the template in the editor.
     */
     
    package basic.dao ;
     
    import basic.beans.Action;
    import basic.utils.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.Vector;
    import java.util.Date;
    import javax.servlet.ServletContext;
     
    /**
     *
     * @author fabrice
     */
    public class ActionsDao
    {
     
        private static ActionsDao instance;
     
        private String driver="com.mysql.jdbc.Driver";
        private String dbUrl="jdbc:mysql://localhost/lalima";
        private String user="root";
        private String password="123456";
     
        private Connection cnx;
        private PreparedStatement getAllStmt;
        private PreparedStatement putStmt;
        private String getQuery;
        private String putQuery;
     
        /** Creates a new instance of DaoPlannedOrder */
     
        public ActionsDao()
        {
     
            putQuery="INSERT INTO tb_planned_orders VALUES (NULL,?,?,?,?,?,?,?)";
            getQuery="SELECT * FROM tb_actions";
            try
            {
                Class.forName(driver);
                cnx=DriverManager.getConnection(dbUrl,user,password);
                getAllStmt=cnx.prepareStatement(getQuery);
                putStmt=cnx.prepareStatement(putQuery);
            }
            catch (ClassNotFoundException e)
            {
            }
            catch (SQLException e)
            {
            }
        }
     
        public static ActionsDao getInstance()
        {
            if(instance==null)
                instance=new ActionsDao();
            return instance;
        }
     
     
        public ArrayList getActions()
        {
            try
            {
                ResultSet rs;
                ArrayList actionsList= new ArrayList();
                getAllStmt=cnx.prepareStatement(getQuery);
                synchronized (getAllStmt)
                {
                    rs=getAllStmt.executeQuery();
                }
                while (rs.next())
                {
                    actionsList.add(makeAction(rs));
                }
                return actionsList;
            }
            catch (SQLException e)
            {
                return null;
            }
        }
     
        public Action makeAction(ResultSet rs)
        {
            Action a = new Action();
            try
            {
                a.setId(rs.getInt("id"));
                a.setModule(rs.getString("module"));
                a.setTask(rs.getString("task"));
                a.setCmd((Command) rs.getObject("cmd"));
                a.setNextPageId(rs.getString("nextpageid"));
            }
            catch(SQLException e)
            {
     
            }
            return a;
        }
     
     
        public void put(Action a)
        {
            try
            {
                synchronized(putStmt)
                {
                    /*
                    putStmt.clearParameters();
                    putStmt.setString(1,a.getOrderNo());
                    putStmt.setString(2,a.getSearchKey());
                    putStmt.setInt(3,a.getFrac());
                    putStmt.setString(4,a.getColor());
                    putStmt.setDate(5, (java.sql.Date) a.getDueDate());
                    putStmt.setString(6,a.getProduct());
                    putStmt.setInt(7,a.getQuantity());
                    putStmt.executeUpdate();
                     */
                }
            }
     
            catch(SQLException e)
            {
            }
        }
     
     
        /* Getters and Setters */
     
     
        public void setGetQuery(String _queryGet)
        {
            this.getQuery = _queryGet;
        }
     
        public String getGetQuery()
        {
            return getQuery;
        }
     
        public String getPutQuery()
        {
            return putQuery;
        }
     
        public void setPutQuery(String putQuery)
        {
            this.putQuery = putQuery;
        }
     
     
    }
    Mon fichier bean Action

    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
     
     
    /*
     * Action.java
     *
     * Created on 22. août 2007, 12:42
     */
     
    package basic.beans;
     
    import java.beans.*;
    import java.io.Serializable;
     
    /**
     * @author fbourqui
     */
    public class Action  implements Serializable
    {
     
        private int id;
        private String module;
        private String task;
        private Command cmd;
        private String nextPageId;
     
     
        public Action()
        {
            id=0;
            module=null;
            task=null;
            cmd=null;
            nextPageId=null;
        }
     
        public int getId()
        {
            return id;
        }
     
        public void setId(int id)
        {
            this.id = id;
        }
     
        public String getModule()
        {
            return module;
        }
     
        public void setModule(String module)
        {
            this.module = module;
        }
     
        public String getTask()
        {
            return task;
        }
     
        public void setTask(String task)
        {
            this.task = task;
        }
     
        public Command getCmd()
        {
            return cmd;
        }
     
        public void setCmd(Command _cmd)
        {
            this.cmd = _cmd;
        }
     
        public String getNextPageId()
        {
            return nextPageId;
        }
     
        public void setNextPageId(String nextPageId)
        {
            this.nextPageId = nextPageId;
        }   
     
    }

Discussions similaires

  1. Comment faire une interface de ce type....
    Par SpiderAlpha dans le forum C++Builder
    Réponses: 6
    Dernier message: 30/04/2007, 14h50
  2. Tableau dans une interface idl
    Par Polochon2001 dans le forum CORBA
    Réponses: 2
    Dernier message: 14/05/2004, 10h44
  3. [Débutant] Lancer une interface sous éclipse
    Par bonnefr dans le forum SWT/JFace
    Réponses: 11
    Dernier message: 11/05/2004, 16h59
  4. Comment créé une "interface" pour mes programmes??
    Par alcazar dans le forum Autres éditeurs
    Réponses: 5
    Dernier message: 09/02/2004, 14h02
  5. portabilité d'une interface
    Par marou dans le forum JBuilder
    Réponses: 4
    Dernier message: 21/03/2003, 09h53

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