Questions tagged [thorntail]

Thorntail, formerly known as WildFly Swarm, is an open source (Apache License 2.0) Java application server developed by RedHat as a basis for microservice deployments.

Thorntail is a framework based on the popular WildFly Java application server to enable the creation of small, standalone microservice-based applications. Thorntail is capable of producing so-called just enough app-server to support each component of your system.

See Thorntail.io for more information.

111 questions
9
votes
1 answer

OpenAPI and @Schema annotation on Java Enum

I’m generating OpenAPI 3.0 documentation from annotated java code. But the issue is that when I add @Schema annotation to enum all the values disappear. I'm using Thorntail 2.3.0.Final with microprofile-openapi fraction. I know I can just change the…
Kiki
  • 2,243
  • 5
  • 30
  • 43
6
votes
1 answer

JPA/eclipselink errors when migrating from java 8 to java 11

I'm trying to migrate my Thorntail application from java 8 to java 11 and I am having problems with entity's relationships. The used mapping works fine with java 8 but in java 11 i have this error: 2019-07-03 15:48:12,713 ERROR [stderr] (main)…
6
votes
3 answers

What is the difference between Quarkus and Thorntail?

Could you please provide more detailed difference between Quarkus and Thorntail? This would help when considering between these two when building a new "Java cloud native app".
Libor Krzyzanek
  • 131
  • 1
  • 9
6
votes
1 answer

Thorntail not exiting gracefully

I'm running a Thorntail 2.2.1.Final microservice with Maven using either of these commands mvn thorntail:start mvn thorntail:run It runs fine, but when I hit Ctrl-C it doesn't exit the application i.e. the console returns, but the app runs in the…
Sean
  • 1,416
  • 19
  • 51
6
votes
3 answers

Docker (Spring Boot or Thorntail) and Keycloak

i have a Problem Running Spring Boot and Keycloak both in docker containers. I started with Keycloak with mysql as db running in docker. services: mysql: image: mysql:5.7 container_name: mysql volumes: -…
Dagger87
  • 223
  • 3
  • 8
5
votes
1 answer

Keycloak Client settings, what URLs do I need?

I have problems setting up Keycloak for a project I do. Keycloak is running on http://localhost:8180. Thorntail server is running on http://localhost:8080/users which serves data for an Angular frontend on http://localhost:4200/*. What I want to do…
cheesy
  • 89
  • 1
  • 1
  • 5
5
votes
0 answers

CDI errors on Tests

I'm building an application using Wildfly Swarm 2018.5.0. When I setup the application tests, every thing works fine in an "Hello World" application, but when I add it to my application with all dependencies, there is a lot of erros like:…
Victor
  • 8,309
  • 14
  • 80
  • 129
4
votes
1 answer

Thorntail-Examples / API Incompatibility

When trying to package the thorntail-examples project on github, the build fails on several of the examples stating an API incompatibility error similar to this... [ERROR] Failed to execute goal…
Atrum
  • 76
  • 6
3
votes
2 answers

Packaging JSF web app with Quarkus with JVM mode

Quarkus JVM mode with JSF I have an existing thorntail 2.4 based web application built using JSF and JEE (CDI/EJB). For my technology stack above, if I am only using the JVM mode and not the native mode, is it possible to package my application…
3_eyed_raven
  • 43
  • 1
  • 5
3
votes
0 answers

Unable to connect to activemq resource adapter using thorntail

The error message: 2018-07-17 21:59:15,134 ERROR [stderr] (main) Caused by: org.wildfly.swarm.container.DeploymentException: WFSWARM0004: Deployment failed: {"WFLYCTL0412: Required services that are not installed:" =>…
Kuryeux
  • 33
  • 4
2
votes
4 answers

Quarkus unit tests exclude class

I am moving from Thorntail to Quarkus. In my tests I used to create a @deployment method in which I put only what was needed by the tests. In particular I didn't put a Class having a @Startup annotation (because I didn't want to test that ...). When…
Lbro
  • 309
  • 2
  • 16
2
votes
1 answer

How to set transport in the global configuration in order to define a clustered cache - infinispan

Trying to configure cache on thorntail project-defaults.yaml however am stuck with the below issue while tying to start or deploy on wildfly. Error Must have a transport set in the global configuration in order to define a clustered cache. Am not…
Dev Fh
  • 586
  • 7
  • 18
2
votes
1 answer

Why CORSFilter conflicts with ExceptionMapper?

I have this Java thorntail application, where I wanted to catch all uncaught exceptions. I wanted to respond with 500 instead of the default error page that JAXRS gives, so I just used implementation of ExceptionMapper. Did the testing…
trimpirim
  • 71
  • 1
  • 7
2
votes
0 answers

Thorntail with Hotswap agent possible?

Is it possible to configure thorntail (swarm) runner plugin to use HotSwap Agent somehow? I've managed to do so with Wildfly but when I set VM arguments for the agent I get following error: java.lang.ClassNotFoundException:…
Mike
  • 812
  • 9
  • 25
2
votes
1 answer

Thorntail JMS to Remote ActiveMQ Server?

I am creating a simple Thorntail service that will write a text message to a remote ActiveMQ queue, and have that message consumed by an MDB. To test this, I've got ActiveMQ running in a local Docker container. The relevant portion of my…
Shadowman
  • 11,150
  • 19
  • 100
  • 198
1
2 3 4 5 6 7 8