![JAR search and dependency download from the Maven repository](/logo.png)
io.katharsis.spring.boot.QueryParamsBuilderConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katharsis-spring Show documentation
Show all versions of katharsis-spring Show documentation
Katharsis Spring integration
package io.katharsis.spring.boot;
import io.katharsis.queryParams.DefaultQueryParamsParser;
import io.katharsis.queryParams.QueryParamsBuilder;
import io.katharsis.queryParams.QueryParamsParser;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class QueryParamsBuilderConfiguration {
@Bean
public QueryParamsParser queryParamsParser() {
return new DefaultQueryParamsParser();
}
@Bean
public QueryParamsBuilder queryParamsBuilder(QueryParamsParser queryParamsParser) {
return new QueryParamsBuilder(queryParamsParser);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy