plantuml 依赖_Plantuml的基本使用

pom.xml添加依赖

net.sourceforge.plantuml

plantuml

1.2020.10

对应controller写入plantuml脚本

package com.imddysc.testweb.controller;

import java.io.ByteArrayOutputStream;

import java.io.IOException;

import org.springframework.http.MediaType;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.RequestParam;

import org.springframework.web.bind.annotation.ResponseBody;

import org.springframework.web.bind.annotation.RestController;

import net.sourceforge.plantuml.FileFormat;

import net.sourceforge.plantuml.FileFormatOption;

import net.sourceforge.plantuml.SourceStringReader;

@RestController

public class PlantUMLServerController {

@ResponseBody

@RequestMapping(value = "/ping", method = RequestMethod.GET)

public String ping() throws IOException {

System.out.println("Ping");

return "OK!";

}

@ResponseBody

@RequestMapping(value = "/uml", method = RequestMethod.GET, produces = MediaType.IMAGE_PNG_VALUE)

public byte[] generateImageFromUmlScript(@RequestParam(value = "script", defaultValue = "@startuml;actor Kaka;@enduml") String script) throws IOException {

System.out.println("Generate UML for: "+script);

SourceStringReader reader = new SourceStringReader(script.replace(';','\n'));

ByteArrayOutputStream bos = new ByteArrayOutputStream();

reader.generateImage(bos, new FileFormatOption(FileFormat.PNG, false));

return bos.toByteArray();

}

}

二、

服务器需要安装 curl  graphviz 等。

yum install -y curl curl-devel graphviz graphviz-devel

@startuml

!include

!include

!include

!include

title Cloudinsight sprites example

skinparam monochrome true

rectangle "\nwebapp" as webapp

queue "" as kafka

rectangle "\ndaemon" as daemon

database "" as cassandra

webapp -> kafka

kafka -> daemon

daemon --> cassandra

@enduml

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值