com.github.mcollovati.vertx.vaadin.connect.VertxEndpointRegistryInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-vaadin-flow Show documentation
Show all versions of vertx-vaadin-flow Show documentation
An adapter to run Vaadin Flow applications on Vertx
The newest version!
/*
* The MIT License
* Copyright © 2016-2020 Marco Collovati ([email protected])
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.github.mcollovati.vertx.vaadin.connect;
import java.util.HashSet;
import java.util.Set;
import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.HandlesTypes;
import com.vaadin.flow.server.VaadinServletContext;
import com.vaadin.flow.server.frontend.scanner.ClassFinder;
import com.vaadin.flow.server.startup.ClassLoaderAwareServletContainerInitializer;
import com.vaadin.hilla.BrowserCallable;
import com.vaadin.hilla.Endpoint;
import com.vaadin.hilla.EndpointNameChecker;
import com.github.mcollovati.vertx.support.HillaWorkAround;
@HandlesTypes({Endpoint.class, BrowserCallable.class})
public class VertxEndpointRegistryInitializer implements ClassLoaderAwareServletContainerInitializer {
@Override
public void process(Set> set, ServletContext ctx) throws ServletException {
VaadinServletContext vaadinServletContext = new VaadinServletContext(ctx);
if (set == null || !Boolean.parseBoolean(vaadinServletContext.getContextParameter("hilla.enabled"))) {
return;
}
HillaWorkAround.install();
ClassFinder finder = new ClassFinder.DefaultClassFinder(set);
Set> endpoints = new HashSet<>();
endpoints.addAll(finder.getAnnotatedClasses(Endpoint.class));
endpoints.addAll(finder.getAnnotatedClasses(BrowserCallable.class));
vaadinServletContext.setAttribute(VaadinEndpointRegistry.class, fromClasses(endpoints));
}
static VaadinEndpointRegistry fromClasses(Set> endpoints) {
VaadinEndpointRegistry registry = new VertxEndpointRegistry(new EndpointNameChecker());
endpoints.stream().map(VertxEndpointRegistryInitializer::newInstance).forEach(registry::registerEndpoint);
return registry;
}
static Object newInstance(Class> cl) {
try {
return cl.newInstance();
} catch (InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy