GWT SuperDevMode划分选项

时间:2017-04-21 13:13:39

标签: gwt

您如何将项目分为两部分? 1)当我在SuperDevMode模式下运行时。您的资源和* .gwt.xml 2)当我在maven中编译时。特殊资源和* .gwt.xml。

例如我的属性

struct ClassData {
    let title: String
    let students: [Student]
}

struct Student {
    id: Int
    name: String
}


let tableData = [ClassData]()

func numberOfSections(in tableView: UITableView) -> Int {
    return tableData.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return tableData[section].students.count
}

视情况而定。 SuperDev或Maven。我必须取消注释必要的行并注释掉不必要的行。

1 个答案:

答案 0 :(得分:1)

在创建要部署的war文件时,可以使用maven-antrun-plugin将内容复制到构建中。 Maven Antrun Plugin documentantion and examples.

你的问题很抽象。您能否举例说明需要复制哪种资源以及原因。这将使我们能够为您提供更好的建议和解决方案。