如何在IDE上运行由Gradle War插件生成的War文件?

时间:2015-07-07 15:44:32

标签: gradle ide war

如何在IDE上运行由Gradle War插件生成的War文件? 如何配置IDE以自行运行文件? Intellij IDEA可以做到这一点。我只需要为“战争”进行配置。并部署输出。

1 个答案:

答案 0 :(得分:3)

将“Jetty”插件应用于您的项目:

jettyRunWar

之后,任务package main; import java.util.List; import org.springframework.data.mongodb.repository.MongoRepository; import org.springframework.data.repository.query.Param; import org.springframework.data.rest.core.annotation.RepositoryRestResource; @RepositoryRestResource(collectionResourceRel = "people", path = "people") public interface PersonRepository extends MongoRepository<Person, String> { List<Person> findByLastName(@Param("name") String name); } 将可用。它将从命令行或IDE运行你的战争。