All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveServerConfig Maven / Gradle / Ivy

package io.quarkus.resteasy.reactive.server.deployment;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(name = "resteasy-reactive")
public class ResteasyReactiveServerConfig {

    /**
     * Set this to define the application path that serves as the base URI for all
     * JAX-RS resource URIs provided by {@code @Path} annotations when there are no
     * {@code @ApplicationPath} annotations defined on {@code Application} classes.
     * 

* This value is always resolved relative to {@code quarkus.http.root-path}. */ @ConfigItem Optional path; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy