Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js?v=7.5.3
Most annoying error ever. Have tried running multiple different applications and read through tons of forums posts and have tried everything. Even tried on Debian and CentOS servers. Same error no matter what. I never receive the issue on my instance of Wildfly 8.2 on my local machine. On the Debian instance I am using ProxyPass and ProxyPassReverse to allow access to the application.
I even set the same things up for Failed to load the bootstrap javascript: /VaadinTest/VAADIN/vaadinBootstrap.js
Anyone have any extra advice? I am really open to anything at this point. Thanks!
Class from basic maven archetype application. Application name is VaadinTest.
@Theme("mytheme")
@Widgetset("com.MyAppWidgetset")
public class MyUI extends UI {
@Override
protected void init(VaadinRequest vaadinRequest) {
final VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
setContent(layout);
Button button = new Button("Click Me");
button.addClickListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
layout.addComponent(new Label("Thank you for clicking"));
}
});
layout.addComponent(button);
}
@WebServlet(value = {"/*", "/VaadinTest/*", "/VAADIN/*"}, asyncSupported = true)
@VaadinServletConfiguration(productionMode = false, ui = MyUI.class)
public static class MyUIServlet extends VaadinServlet {
}
}