Running Piranha Embedded with Spring Boot
How can you integrate Piranha Embedded with Spring Boot?
In 4 steps you will learn how to so. They are:
- Create the Maven POM file
- Add the application class
- Add the endpoint
- Deploy the application
Create the Maven POM file
Create an empty directory to store your Maven project. Inside of that directory create the pom.xml
file with the content as below.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cloud.piranha.guides.embedded</groupId>
<artifactId>springboot</artifactId>
<version>24.10.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Piranha Embedded - Running Piranha Embedded with Spring Boot</name>
<properties>
<java.version>21</java.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<piranha.version>24.8.0</piranha.version>
<spring-boot.version>3.3.2</spring-boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>cloud.piranha.spring</groupId>
<artifactId>piranha-embedded-spring-boot-starter</artifactId>
<version>${piranha.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Add the application class
Add the Application class in the src/main/java
directory, which allows you to
configure the ServletWebServerFactory to be used.
package hello;
import cloud.piranha.spring.starter.embedded.EmbeddedPiranhaServletWebServerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class HelloApplication {
@Bean
public ServletWebServerFactory factory() {
return new EmbeddedPiranhaServletWebServerFactory();
}
@Bean
public WebServerFactoryCustomizer<EmbeddedPiranhaServletWebServerFactory> customizer() {
return new WebServerFactoryCustomizer<EmbeddedPiranhaServletWebServerFactory>() {
@Override
public void customize(EmbeddedPiranhaServletWebServerFactory factory) {
factory.setPort(8080);
}
};
}
public static void main(String[] arguments) {
SpringApplication.run(HelloApplication.class, arguments);
}
}
Add the endpoint
And we are adding a simple ‘Hello’ endpoint that is listening on the /hello
path.
package hello;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello";
}
}
Deploy the application
The following command line will deploy your application:
java -jar springboot.jar
Conclusion
As you can see Piranha Embedded and Spring Boot can work together.