Précédent   Forum des professionnels en informatique > Logiciels > Solutions d'entreprise > Business Intelligence > Jasper > iReport
iReport Forum d'entraide sur iReport
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 16/12/2006, 12h50   #1
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
Par défaut package net.sf.jasperreports.engine does not exist

salut,
j'aimerais générer un fichier pdf avec ireport à partir du code java comlpilé sous le jdk 1.5; mais après avoir importé certaines packages tels que
Code :
1
2
3
4
5
6
7
8
9
 
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperExportManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.engine.design.JasperDesign;
import net.sf.jasperreports.engine.xml.JRXmlLoader;
j'obtiens 8 erreurs du genre
Code :
1
2
 
package net.sf.jasperreports.engine does not exist
QUE FAIRE?
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 18/12/2006, 11h40   #2
Membre habitué
 
Avatar de relivio
 
Inscription : février 2004
Messages : 157
Détails du profil
Informations forums :
Inscription : février 2004
Messages : 157
Points : 139
Points : 139
Bonjour,

Peut-être que ton classpath dans IReport n'est pas à jour ou mal renseigné.

Dans "Options > Classpath", tu as une petite fenêtre où tu peux ajouter des librairies (jar) ou directement des répertoires où sont situées tes librairies.

J'espère que cela t'aidera.

Oliv'.
relivio est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 19/12/2006, 12h08   #3
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
J'ai essayé, mais j'ai toujours les mêmes erreurs. Alors, j'aimerais d'abord savoir s'il est possible de générer le rapport à partir du code java seulement avec le jdk1.5 sans utiliser eclipse ou jbuilder.
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 19/12/2006, 12h26   #4
Membre habitué
 
Avatar de relivio
 
Inscription : février 2004
Messages : 157
Détails du profil
Informations forums :
Inscription : février 2004
Messages : 157
Points : 139
Points : 139
Bonjour,

Alors pour ma part je n'utilise ni Eclipse ni JBuilder. J'utilise directement IReport.
J'effectue la création de mon modèle JRXML avec IReport. Et je vais ensuite le compiler.

Par contre, au niveau du classpath ça aurait été bien de me dire ce que tu y mets, car j'ai l'impression que tu y renseignes uniquement l'emplacement de ton JDK. A partir de là, c'est normal que cela ne fonctionne pas puisque les classes JasperReports n'appartiennent pas au JDK. Il faut y ajouter le répertoire lib de ton installation de IReport.

Par exemple, tu as cette librairie :
Code :
jasperreports-1.2.5.jar
Et cette librairie qui contient le package "net.sf.jasperreports.engine"

Mets juste un peu plus d'infos si cela ne résouds pas ton problème.

Oliv'.
relivio est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 19/12/2006, 17h52   #5
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
salut,
je vais essayer ce que vous venez de suggérer. Mais je pense qu'il faut que j'explique mieux ce que je veux faire pour que vous puissiez mieux m'aider.
Voilà, j' ai créé un fichier "edit_commande.java" qui me permettrait d'éditer des commandes, ensuite j'ai créé le modèle de bon de commande avec ireport que je compile et exécute facilement sous ireport. Maintenant, j'aimerais à partir du bouton editer de ma JFrame, lancer directement l'édition du bon de commande.
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 20/12/2006, 10h38   #6
Membre habitué
 
Avatar de relivio
 
Inscription : février 2004
Messages : 157
Détails du profil
Informations forums :
Inscription : février 2004
Messages : 157
Points : 139
Points : 139
Bonjour,

Juste une remarque, je pense que cela peut provenir de ton classpath système.
En effet, si tu exécutes ton programme en ligne de commande, il faut que ton classpath système pointe sur la libraire "jasperreports-1.2.x.jar".
Ensuite cela dépend de ton système d'exploitation.

Sur Windows :
Clic droit "poste de travail" > Propriétés > onglet "Avancé" > "Variables d'environnement". A partir de là, modifier la varaible JAVA_HOME pour y ajouter le répertoire contenant les librairies IReport.
Ci cela ne va pas, créer une variable CLASSPATH et y renseigner les répertoires ou librairies directement.

Sur UNIX :
"export CLASSPATH=/.../jasperreports-1.2.x.jar:/.../itext.jar:..."

J'espère qu'on arrive à la solution du problème.

Oliv'.
relivio est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 20/12/2006, 17h12   #7
Membre habitué
 
Avatar de relivio
 
Inscription : février 2004
Messages : 157
Détails du profil
Informations forums :
Inscription : février 2004
Messages : 157
Points : 139
Points : 139
re

J'ai juste un truc ton erreur se situe à quel moment? (compilation ou execution)

Là ce que je dirais c'est la compilation. Et donc c'est vraiment une histoire de "CLASSPATH" qui n'est pas à jour. En même temps, ce message apparait bien à la compilation. Et je pense qu'à l'éxécution il génère une exception "NoClassDefFoundError".

Enfin juste pour dire que dans le premier post, mettre explicitement qu'il s'agissait d'un problème de compilation tu aurais gagner du temps.

Oliv'.
relivio est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 21/12/2006, 11h21   #8
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
Citation:
Sur Windows :
Clic droit "poste de travail" > Propriétés > onglet "Avancé" > "Variables d'environnement". A partir de là, modifier la varaible JAVA_HOME pour y ajouter le répertoire contenant les librairies IReport.
Ci cela ne va pas, créer une variable CLASSPATH et y renseigner les répertoires ou librairies directement.
Effectivement je suis sur windows et l'erreur se produit juste à la compilation. J'ai essayé de retrouver la variable JAVA_HOME mais je ne l'ai pas parmi les variables. Je vais donc la créér ou crééer la varia
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 21/12/2006, 11h26   #9
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
excuse pour le message précédent, je l'ai envoyé par mégarde alors qu'elle était incomplète.
Je disais donc que je vais essayé de créer la variable JAVA_HOME ou la variable classpath comme tu le disais.
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 21/12/2006, 11h58   #10
Membre habitué
 
Avatar de relivio
 
Inscription : février 2004
Messages : 157
Détails du profil
Informations forums :
Inscription : février 2004
Messages : 157
Points : 139
Points : 139
Bonjour,

Alors si tu les crées, je pense qu'il n'y aura pas de problème.

Par contre, si cela ne fonctionne pas, tu peux toujours utiliser les options de la commande "javac".
Je pense qu'il doit utiliser les ":" comme séparateurs.

Et à l'exécution, commande "java", tu as le même genre d'option.
Avec ":" comme séparateur.

Voilà je pense que tu as toutes les billes en main.

Bonne journée.
Oliv'
relivio est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 27/12/2006, 14h14   #11
Candidat au titre de Membre du Club
 
Inscription : juin 2006
Messages : 34
Détails du profil
Informations forums :
Inscription : juin 2006
Messages : 34
Points : 11
Points : 11
salut,
j'ai créé la variable classpath et je n'ai plus de messages d'erreur à la compilation. Par contre quand j'utilise l'option -classpath<chemin_accès> de la commande javac ou l'option -cp <chemin_accès> de la commande java, jai le message
Citation:
Access is denied
, alors que je travaille dans une session administrateur. A quoi cela est-il dû?
ashash est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 24/05/2011, 14h51   #12
Invité de passage
 
Inscription : janvier 2011
Messages : 4
Détails du profil
Informations forums :
Inscription : janvier 2011
Messages : 4
Points : 4
Points : 4
Je crois avoir le meme problème .
J'essaie de générer un rapport en utilisant dynamic jasper et voila le code de
la méthode qui fait cette génération :

try {
Style detailStyle = new Style();
Style headerStyle = new Style();
headerStyle.setBackgroundColor(blue);
Style titleStyle = new Style();
titleStyle.setBackgroundColor(gray);
titleStyle.setTransparency(Transparency.OPAQUE);
Style subtitleStyle = new Style();
Style amountStyle = new Style();
amountStyle.setHorizontalAlign(HorizontalAlign.RIGHT);
amountStyle.setBackgroundColor(blue);
amountStyle.setTransparency(Transparency.OPAQUE);
FastReportBuilder drb = new FastReportBuilder();
drb.setTitle("November 2006 sales report")
.setSubtitle("The items in this report correspond to the main products: DVDs, Books, Foods and Magazines")
.setDetailHeight(15)
.setMargins(30, 20, 30, 15)
.setDefaultStyles(titleStyle, subtitleStyle, headerStyle,
detailStyle).setColumnsPerPage(1);
AbstractColumn columnState = ColumnBuilder.getNew() /
.setColumnProperty("codeExterne", String.class.getName()) // type
.setTitle("CodeExterne") // the title for the column
.setWidth(85) // the width of the column
.build(); // builds and return a new AbstractColumn
// Create more columns
AbstractColumn columnBranch = ColumnBuilder.getNew()
.setColumnProperty("codeTransaction",String.class.getName()).setTitle("CodeTransaction")
.setWidth(85).build();

AbstractColumn columnaProductLine = ColumnBuilder.getNew()
.setColumnProperty("dateComptable", String.class.getName())
.setTitle("DateComptable").setWidth(85).build();
DynamicReport dr = drb.build(); // Finally build the report!
JRDataSource ds = new JRBeanCollectionDataSource(
RecapitulatifDesODsGenerator.getDummyCollectionSmall());
jp = DynamicJasperHelper.generateJasperPrint(dr,
new ClassicLayoutManager(), ds);
JasperViewer.viewReport(jp); // finally display the report report
} catch (Exception e) {
facesMessages.add(e.getStackTrace().toString());
}
}


En appelant cette méthode depuis un main , le rapport sort sans problème
En essayant d'appeler cette méthode depuis une application WEB , (depuis un xhtml sous seam framework) je rencontre le problème qui suit :

net.sf.jasperreports.engine.design.JRAbstractCompiler.compileReport(JRAbstractCompiler.java:191), net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:215), ar.com.fdvs.dj.core.DynamicJasperHelper.generateJasperReport(DynamicJasperHelper.java:542), ar.com.fdvs.dj.core.DynamicJasperHelper.generateJasperReport(DynamicJasperHelper.java:518), ar.com.fdvs.dj.core.DynamicJasperHelper.generateJasperPrint(DynamicJasperHelper.java:283), ar.com.fdvs.dj.core.DynamicJasperHelper.generateJasperPrint(DynamicJasperHelper.java:236), com.sgss.fas.chen.actions.ReportingControlDetailsAction.buildReport(ReportingControlDetailsAction.java:449), ....

J'ai bien intégré mes librairies sous WEB-INF/lib , et je ne sais pourquoi il bug lorsde la compilation ???
Any suggestions ???
MERCI
dev_it_tn est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 24/05/2011, 15h09   #13
Invité de passage
 
Inscription : janvier 2011
Messages : 4
Détails du profil
Informations forums :
Inscription : janvier 2011
Messages : 4
Points : 4
Points : 4
Voila un détail de l'erreur que j'obtient :
net.sf.jasperreports.engine.JRException: Errors were encountered when compiling report expressions class file:
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:4: package net.sf.jasperreports.engine does not exist
import net.sf.jasperreports.engine.*;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:5: package net.sf.jasperreports.engine.fill does not exist
import net.sf.jasperreports.engine.fill.*;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:18: cannot find symbol
symbol: class JREvaluator
public class DynamicReport_1306242206528_929644 extends JREvaluator
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:25: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_LOCALE = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:26: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_JASPER_REPORT = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:27: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_VIRTUALIZER = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:28: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_TIME_ZONE = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:29: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_SORT_FIELDS = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:30: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_FILE_RESOLVER = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:31: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_SCRIPTLET = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:32: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_PARAMETERS_MAP = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:33: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_CONNECTION = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:34: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_CLASS_LOADER = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:35: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_DATA_SOURCE = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:36: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_URL_HANDLER_FACTORY = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:37: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_IS_IGNORE_PAGINATION = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:38: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_FORMAT_FACTORY = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:39: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_MAX_COUNT = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:40: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_TEMPLATES = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:41: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
private JRFillParameter parameter_REPORT_RESOURCE_BUNDLE = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:42: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_libelleEcriture = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:43: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_dateValeur = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:44: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_codeExterne = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:45: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_deviseDeCompta = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:46: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_mntDebit = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:47: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_dateSaisie = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:48: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_dateComptable = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:49: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_codeTransaction = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:50: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_mntCredit = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:51: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_libelleCompte = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:52: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_numeroCompte = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:53: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
private JRFillField field_dateEffet = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:54: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
private JRFillVariable variable_PAGE_NUMBER = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:55: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
private JRFillVariable variable_COLUMN_NUMBER = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:56: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
private JRFillVariable variable_REPORT_COUNT = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:57: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
private JRFillVariable variable_PAGE_COUNT = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:58: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
private JRFillVariable variable_COLUMN_COUNT = null;
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:81: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_LOCALE = (JRFillParameter)pm.get("REPORT_LOCALE");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:82: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_JASPER_REPORT = (JRFillParameter)pm.get("JASPER_REPORT");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:83: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_VIRTUALIZER = (JRFillParameter)pm.get("REPORT_VIRTUALIZER");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:84: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_TIME_ZONE = (JRFillParameter)pm.get("REPORT_TIME_ZONE");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:85: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_SORT_FIELDS = (JRFillParameter)pm.get("SORT_FIELDS");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:86: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_FILE_RESOLVER = (JRFillParameter)pm.get("REPORT_FILE_RESOLVER");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:87: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_SCRIPTLET = (JRFillParameter)pm.get("REPORT_SCRIPTLET");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:88: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_PARAMETERS_MAP = (JRFillParameter)pm.get("REPORT_PARAMETERS_MAP");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:89: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_CONNECTION = (JRFillParameter)pm.get("REPORT_CONNECTION");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:90: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_CLASS_LOADER = (JRFillParameter)pm.get("REPORT_CLASS_LOADER");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:91: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_DATA_SOURCE = (JRFillParameter)pm.get("REPORT_DATA_SOURCE");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:92: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_URL_HANDLER_FACTORY = (JRFillParameter)pm.get("REPORT_URL_HANDLER_FACTORY");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:93: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_IS_IGNORE_PAGINATION = (JRFillParameter)pm.get("IS_IGNORE_PAGINATION");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:94: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_FORMAT_FACTORY = (JRFillParameter)pm.get("REPORT_FORMAT_FACTORY");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:95: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_MAX_COUNT = (JRFillParameter)pm.get("REPORT_MAX_COUNT");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:96: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_TEMPLATES = (JRFillParameter)pm.get("REPORT_TEMPLATES");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:97: cannot find symbol
symbol : class JRFillParameter
location: class DynamicReport_1306242206528_929644
parameter_REPORT_RESOURCE_BUNDLE = (JRFillParameter)pm.get("REPORT_RESOURCE_BUNDLE");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:106: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_libelleEcriture = (JRFillField)fm.get("libelleEcriture");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:107: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_dateValeur = (JRFillField)fm.get("dateValeur");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:108: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_codeExterne = (JRFillField)fm.get("codeExterne");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:109: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_deviseDeCompta = (JRFillField)fm.get("deviseDeCompta");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:110: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_mntDebit = (JRFillField)fm.get("mntDebit");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:111: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_dateSaisie = (JRFillField)fm.get("dateSaisie");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:112: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_dateComptable = (JRFillField)fm.get("dateComptable");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:113: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_codeTransaction = (JRFillField)fm.get("codeTransaction");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:114: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_mntCredit = (JRFillField)fm.get("mntCredit");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:115: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_libelleCompte = (JRFillField)fm.get("libelleCompte");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:116: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_numeroCompte = (JRFillField)fm.get("numeroCompte");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:117: cannot find symbol
symbol : class JRFillField
location: class DynamicReport_1306242206528_929644
field_dateEffet = (JRFillField)fm.get("dateEffet");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:126: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
variable_PAGE_NUMBER = (JRFillVariable)vm.get("PAGE_NUMBER");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:127: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
variable_COLUMN_NUMBER = (JRFillVariable)vm.get("COLUMN_NUMBER");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:128: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
variable_REPORT_COUNT = (JRFillVariable)vm.get("REPORT_COUNT");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:129: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
variable_PAGE_COUNT = (JRFillVariable)vm.get("PAGE_COUNT");
^
C:\JAVA\JBOSS\jboss-5.1.0.GA\bin\DynamicReport_1306242206528_929644.java:130: cannot find symbol
symbol : class JRFillVariable
location: class DynamicReport_1306242206528_929644
variable_COLUMN_COUNT = (JRFillVariable)vm.get("COLUMN_COUNT");


Je précise que j'ai bien jd-compiler.jar sous WEB-INF/lib
Je n'arrives pas à m'en sortir .. ANY HELP
dev_it_tn est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 09h40.


 
 
 
 
Partenaires

Hébergement Web