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

io.mateu.mdd.springboot.VaadinResourceServletBean Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
package io.mateu.mdd.springboot;

import io.mateu.mdd.vaadin.VaadinResourcesServlet;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.stereotype.Service;

@Service
public class VaadinResourceServletBean extends ServletRegistrationBean {

    public VaadinResourceServletBean() {
        super(new VaadinResourcesServlet(), "/VAADIN", "/VAADIN/*");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy