简体   繁体   中英

How to enable webapp as distributable in grails 3+

由于没有web.xml,我如何才能在grails 3+中分发webapp?

step 1: go to src\\main\\webapp\\WEB-INF location. (if not, create the path)
step 2: create a folder WEB-INF
step 3: create a file web.xml and paste the following code

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
         metadata-complete="true"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <distributable/>

</web-app>

step 4: generate war and deploy the war file on tomcat server.

Hope it will work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM