Class AdkWebServer
java.lang.Object
com.google.adk.web.AdkWebServer
- All Implemented Interfaces:
org.springframework.web.servlet.config.annotation.WebMvcConfigurer
@SpringBootApplication
@ConfigurationPropertiesScan
public class AdkWebServer
extends Object
implements org.springframework.web.servlet.config.annotation.WebMvcConfigurer
Spring Boot application for the Agent Server.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddResourceHandlers(org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry registry) Configures resource handlers for serving static content (like the Dev UI).voidaddViewControllers(org.springframework.web.servlet.config.annotation.ViewControllerRegistry registry) Configures simple automated controllers: - Redirects the root path "/" to "/dev-ui".Provides the singleton instance of the ArtifactService (InMemory).static voidMain entry point for the Spring Boot application.Provides the singleton instance of the MemoryService (InMemory).com.fasterxml.jackson.databind.ObjectMapperConfigures the Jackson ObjectMapper for JSON serialization.static voidMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer
addArgumentResolvers, addCorsMappings, addErrorResponseInterceptors, addFormatters, addInterceptors, addReturnValueHandlers, configureAsyncSupport, configureContentNegotiation, configureDefaultServletHandling, configureHandlerExceptionResolvers, configureMessageConverters, configurePathMatch, configureViewResolvers, extendHandlerExceptionResolvers, extendMessageConverters, getMessageCodesResolver, getValidator
-
Constructor Details
-
AdkWebServer
public AdkWebServer()
-
-
Method Details
-
sessionService
-
artifactService
Provides the singleton instance of the ArtifactService (InMemory). TODO: configure this based on config (e.g., DB URL)- Returns:
- An instance of BaseArtifactService (currently InMemoryArtifactService).
-
memoryService
Provides the singleton instance of the MemoryService (InMemory). Will be made configurable once we have the Vertex MemoryService.- Returns:
- An instance of BaseMemoryService (currently InMemoryMemoryService).
-
objectMapper
@Bean public com.fasterxml.jackson.databind.ObjectMapper objectMapper()Configures the Jackson ObjectMapper for JSON serialization. Uses the ADK standard mapper configuration.- Returns:
- Configured ObjectMapper instance
-
addResourceHandlers
public void addResourceHandlers(org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry registry) Configures resource handlers for serving static content (like the Dev UI). Maps requests starting with "/dev-ui/" to the directory specified by the 'adk.web.ui.dir' system property.- Specified by:
addResourceHandlersin interfaceorg.springframework.web.servlet.config.annotation.WebMvcConfigurer
-
addViewControllers
public void addViewControllers(org.springframework.web.servlet.config.annotation.ViewControllerRegistry registry) Configures simple automated controllers: - Redirects the root path "/" to "/dev-ui". - Forwards requests to "/dev-ui" to "/dev-ui/index.html" so the ResourceHandler serves it.- Specified by:
addViewControllersin interfaceorg.springframework.web.servlet.config.annotation.WebMvcConfigurer
-
main
Main entry point for the Spring Boot application.- Parameters:
args- Command line arguments.
-
start
-