Skip to main content

All Questions

Tagged with
0 votes
0 answers
56 views

Java CodeCache is Full executing PlantUML / GraphViz

I am attempting to generate diagrams for my plantuml file locally but keep coming across a Java CodeCache error, I understand in theory what the issue is, that is I need to increase the Cache size, ...
Daniel Rossi's user avatar
0 votes
1 answer
115 views

Running PlantUml Jar On IKVM fails with System.TypeInitializationException

I am attempting to run PlantUml in .Net rather than relying on a Java Virtual Machine installed locally/in docker/externally for it to run on. IKVM as I understand it creates a JVM that runs in .Net ...
LemonLion's user avatar
2 votes
1 answer
640 views

Parse UML class diagram with PlantUML Java API

I want to parse an existing PlantUML class diagram in order to implement my own DDL code generator. As a first step I'm trying to parse a *.puml file containing the class diagram from Java, by using ...
eztam's user avatar
  • 3,709
0 votes
1 answer
589 views

PlantUML graph generation in java Illegal acces error

I'm trying to make a simple graph using java but keep getting error Code: public class PlantUMLDemoMain { public static void main(String[] args) throws Exception { generateFromStringSource(...
Jatel's user avatar
  • 40
2 votes
1 answer
3k views

How to autogenerate UML diagram for java in IntelliJ

I created a medium-sized project in java using IntelliJ, and for my presentation, I need to have a UML diagram of the project structure. Since the project is not particularly small, I wanted to find a ...
Ana Cruz's user avatar
  • 103
1 vote
1 answer
141 views

How to wait until java compilation of PlantUML diagrams is completed, in Python?

Context I've written a Python code that: First generates PlantUML .uml files. Then runs a Java command to locally compile those .uml files into .png diagrams. Exports those diagrams into a /images ...
a.t.'s user avatar
  • 2,584
0 votes
0 answers
2k views

way to show plantuml diagram on markdown viewer of visual studio code

I know way to write plantuml on markdown using vs code. But plantuml diagram doesn't appear on markdown viewer... On the other hand, Plantuml viewer is working very much and markdown viewer also... ...
Jun Takeshita's user avatar
0 votes
1 answer
368 views

Syntax Error inside map, but works on the online webservice

I'm trying to use plantuml inside java to generate a svg file. The code I'm using is basically the one from the example, byte[] bytes = source.getBytes(StandardCharsets.UTF_8); String ...
André Rocha's user avatar
2 votes
1 answer
2k views

How to create PlantUML diagram using Java API without using PlantUML diagram code?

In my Java application I want to use PlantUML to create diagrams. I want to create diagrams in PlantUML using it's Java API without using PlantUML diagram code. Unfortunately there is a lack of ...
igo's user avatar
  • 6,620
0 votes
1 answer
673 views

How to pass environment variables to Asciidoctor-maven-plugin?

I'm using asciidoctor-maven-plugin and asciidoctor-diagram to generate PlantUML diagrams (more specifically C4-PlantUML diagrams). When generating those diagrams, output is polluted by these kind of ...
Riduidel's user avatar
  • 22.2k
-1 votes
1 answer
2k views

Generate Java code given a diagram PlantUML

I need to research about UML Tool PlantUML for presentation. And I use plugins plantUML integration in Intellij, here is my text to draw diagram class Bird interface Flying { {abstract} flying(): void ...
traccy00's user avatar
3 votes
1 answer
2k views

PlantUML java automation

Currently I am working on a project that should represent all classes via PlantUML's. I have heard that this UML could be generated automatically using Maven. But unfortunately all articles and repos ...
Flimtix's user avatar
  • 378
0 votes
1 answer
197 views

Can I prevent PlantUML showing the Java Duke Icon when running on MacOS

When I use a PlantUML SourceStringReader from my Java code on MacOS, the Duke icon bounces around in my Dock. This doesn't happen for the process until it loads its first PlantUML class. The code is ...
Duncan McGregor's user avatar
2 votes
2 answers
2k views

Is there a way to load a (PlantUML-) generated image, without saving to the file system?

I'm working with the Plant UML API to generate UML diagrams of tests in my Java project. The API generates an image and saves it to a PNG or SVG file in the file system. I'm wondering if there's a way ...
anon comp's user avatar
  • 155
0 votes
0 answers
102 views

How do I represent a class defining an enum in a UML class diagram? [duplicate]

How do I represent this in a UML class diagram? public class MyClass { public enum MyEnum { SOMETHING } } How do I show the relationship between the class and the enum?
cervonwong's user avatar

15 30 50 per page