benjaminaaron opened a new issue, #1795:
URL: https://github.com/apache/jena/issues/1795
### Version
4.7.0
### Question
I am using the embedded Fuseki server in a Spring Boot application like this:
```java
FusekiServer fusekiServer = FusekiServer.create()
.add("/ds", ds)
.build();
fusekiServer.start();
```
I would like to use the Fuseki UI.
[Here](https://github.com/afs/fuseki-mods/blob/070033d90a4b6c917e1cf88c0eecf415358e2ad6/jena-fmod-admin/src/main/java/dev/RunFusekiAdmin.java#L61-L78)
I saw that a few things have to be added for it to work? I also added
`implementation "org.apache.jena:jena-fuseki-ui:4.7.0"` to my `build.gradle`
and saw, that it adds a readily built webapp to my gradle libraries. I can't
seem to find out how to serve this though and wire it up properly to the
embedded Fuseki server.
Spring Boot serves content located in `src/main/resources/static`
automatically at `8080`, should I use this or let `FusekiServer` do the serving
via `.staticFileBase()` somehow?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]