我试图将一个最小的Vaadin/SpringBoot应用程序作为WAR文件部署到独立的Tomcat中。如果我跑gradle vaadinRun
和访问localhost:8080
下,但创建与gradle war
WAR文件,然后复制它变成我的Tomcat结果的webapps文件夹中404不幸的是Tomcat的日志不显示任何东西作为WAR部署Vaadin/SpringBoot
一切正常。尝试通过localhost:8080/hello-vaadin
访问。
这里是应用类本身:
package com.somecompany;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.boot.autoconfigure.*;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.boot.web.servlet.ServletComponentScan;
import com.vaadin.spring.annotation.EnableVaadin;
@ServletComponentScan
@SpringBootApplication
@EnableVaadin
public class Application extends SpringBootServletInitializer {
public static void main(String[] args) throws Exception {
configureApplication(new SpringApplicationBuilder()).run(args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return configureApplication(builder);
}
private static SpringApplicationBuilder configureApplication(SpringApplicationBuilder builder) {
return builder.sources(Application.class);
}
}
这是对应的UI类:
package com.somecompany;
import com.vaadin.annotations.Theme;
import com.vaadin.spring.annotation.SpringUI;
import com.vaadin.server.VaadinRequest;
import com.vaadin.ui.UI;
import com.vaadin.ui.Grid;
import org.springframework.beans.factory.annotation.Autowired;
import com.vaadin.ui.Label;
@SpringUI
@Theme("valo")
public class HelloWorldUI extends UI {
@Autowired
public HelloWorldUI() {
}
@Override
protected void init(VaadinRequest request) {
setContent(new Label("Hello World!"));
}
}
最后我gradle这个脚本:
plugins {
id "java"
id "com.devsoap.plugin.vaadin" version "1.2.4"
id "org.springframework.boot" version "1.5.7.RELEASE"
}
jar {
baseName = 'com.somecompany.hello-vaadin'
version = '0.0.1-SNAPSHOT'
}
apply plugin: 'war'
war {
baseName = 'hello-vaadin'
version = '1.0'
}
springBoot {
mainClass = 'com.somecompany.Application'
}
bootRepackage {
mainClass = 'com.somecompany.Application'
}
repositories {
jcenter()
mavenCentral()
maven { url "http://oss.sonatype.org/content/repositories/vaadin-snapshots/" }
maven { url 'https://repo.spring.io/libs-release' }
maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
}
通过教程去后在教程之后,必须有一些我忽略的东西。但是,我不明白这个问题会是什么?
任何提示高度赞赏!
作为maven用户,我需要spring-boot-maven-plugin,也许还有一个等价的gradle呢? – mrkernelpanic
@Jay是的,我可以从经理页面看到应用程序。 – Tobias
@mrkernelpanic这应该在第四行org.springframework.boot插件中完成。 – Tobias