@ConditionalOnClass(value=org.h2.server.web.WebServlet.class)
@Configuration(proxyBeanMethods=false)
@EnableConfigurationProperties(value=org.springframework.boot.autoconfigure.h2.H2ConsoleProperties.class)
@ComponentScan(value="cn.ximcloud.homekit.core.starter.core.service")
@ConditionalOnWebApplication(type=SERVLET)
@AutoConfigureAfter(value={org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.class,HomeKitServiceAutoConfiguration.class})
@ConditionalOnProperty(prefix="ximcloud.homekit",
name="enableHomeKitWebSite",
havingValue="true",
matchIfMissing=true)
public class HomeKitWebAutoConfiguration
extends Object
HomeKitWebAdapter