Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

problema ao gerar boleto personalizado no stela caelum #279

Open
raphapfeifer opened this issue Aug 29, 2022 · 1 comment
Open

problema ao gerar boleto personalizado no stela caelum #279

raphapfeifer opened this issue Aug 29, 2022 · 1 comment

Comments

@raphapfeifer
Copy link

Eu creei um relatório personalizado jasper, e na hora de gerar o pdf, dá um erro e o pdf gerado não é possível ser aberto.
Segue o erro:

2022-08-29 17:15:11.142 ERROR 11484 --- [nio-5072-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is br.com.caelum.stella.boleto.exception.GeracaoBoletoException: br.com.caelum.stella.boleto.exception.GeracaoBoletoException: net.sf.jasperreports.engine.JRException: Class not found when loading object from InputStream] with root cause

java.lang.ClassNotFoundException: net.sf.jasperreports.compilers.ReportExpressionEvaluationData
at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[na:1.8.0_251]
at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[na:1.8.0_251]
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355) ~[na:1.8.0_251]

O código:

Boleto boleto = montarEstruturaBoleto(idCliente, numeroFatura);

        //Mapa para parâmetros
        Map<String, Object> parametros = new HashMap<String, Object>();
        parametros.put("NR_CFD", "TESTE");

        String reportPath = "C:\\boleto-layout.jasper";

        //carrega o conteúdo do arquivo em um InputStream
        InputStream templateBoleto = new FileInputStream(reportPath);

        GeradorDeBoleto gerador = new GeradorDeBoleto(templateBoleto,parametros,boleto);

        System.out.println(gerador.toString());
        File pdf = new File("C:\\pasta-boleto\\BancoCisne.pdf");
        gerador.geraPDF(pdf);
@gilbertoca
Copy link
Contributor

Aqui o principal problema é Classe Não Encontrada:
java.lang.ClassNotFoundException: net.sf.jasperreports.compilers.ReportExpressionEvaluationData

Bem provável que vc fez o relatório em uma versão e está executando em outra.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants