this post was submitted on 10 May 2024
19 points (100.0% liked)

Programming

16201 readers
391 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

I am someone who has been trying to pivot into having a tech job. I have used LaTex before as a student and there is a job I am trying to take that uses Jaspersoft to make reports. Is jasper similar to LaTeX? Are there resources you found particularly helpful?

I am currently still looking to get my install, hello world, and combing their site.

top 9 comments
sorted by: hot top controversial new old
[–] mesamunefire@lemmy.world 6 points 1 month ago

Thats a name I haven't heard in a loooong time.

I remember hooking into the API: https://community.jaspersoft.com/knowledgebase/getting-started/getting-started-rest-web-service-api/

Its a good place to start after you build a couple of reports.

[–] mbirth@lemmy.mbirth.uk 3 points 1 month ago (2 children)

In a previous job we had a tool where you could export data to PDFs using JasperSoft. There's JasperSoft Studio to design these reports. It's basically drag&drop of the different types of boxes and fields onto your virtual page, give them the right names and the application will then fill in these boxes and fields and generate your PDF.

[–] Hammerheart@programming.dev 2 points 1 month ago (1 children)
[–] mbirth@lemmy.mbirth.uk 2 points 1 month ago

The template design is basically no code, IIRC. (But still complex.) Not sure about the code to use that template, though.

[–] InternetCitizen2@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

Thanks, I am not sure how, but i was looking at some post from like 10 years ago on their how to's.

[–] talkingpumpkin@lemmy.world 3 points 1 month ago (1 children)

I last used it a good while ago (like, 10yrs?), so you'll have to verify how what I am about to say applies to current versions (it probably does).

Jasper is an old-school, enterprisey tool similar to Crystal Reports that attempts to give you a WYSIWYG editor for building your reports.

All in all, I'd say that it might be good if you have a reporting department full of people that only do reports and you don't want to train as programmers. If the ones doing the reports are gonna be actual programmers, they'll be much better off generating html/latex/whatever and converting that to pdf.

[–] InternetCitizen2@lemmy.world 1 points 1 month ago

Yeah the place I'm trying to work has non programmers doing several reports.

[–] muhanga@programming.dev 2 points 1 month ago (1 children)

Consider to take look on http://intive-fdv.github.io/DynamicJasper/ It is more code friendly Jasper wrapper to provide reports. Plain jasper is very XML heavy and you will end in wrapping it in some template engine at some point to reduce repetition. Otherwise download the Jasper Report studio crate simple reports and play around. There are maven and gradle build plugins that compile reports during the build and then you can work with compiled versions.

Jasper by itself is not a bad technology and work quite good for designing reports.

[–] InternetCitizen2@lemmy.world 1 points 1 month ago

Thanks for the link