Ошибка при выполнении скрипта gradle.
Если xmlns="http://java.sun.com/xml/ns/javaee"
включено, ошибка.
Какое решение?
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_3_0.xsd"
version="3.0">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<session-config></session-config>
</web-app>
sessionConfig.txt
<session-timeout>10</session-timeout>
build.gradle
def xml = rootProject.file("web.xml").text.trim()
def toadd = rootProject.file("sessionConfig.txt").text.trim()
def root = new XmlParser().parseText( xml )
def fragmentToAdd = new XmlParser().parseText( toadd )
// Insert this new node at position 0 in the children of the first coreEntry node
root.find { it.name() == 'session-config' }.children().add( 0, fragmentToAdd )
String outxml = groovy.xml.XmlUtil.serialize(root)
task tt{
doLast {
new File(projectDir, "newWeb.xml").text = outxml
}
}
- Чтопроизошла ошибка: возникла проблема при оценке корневого проекта «xml».
Невозможно вызвать метод children () для нулевого объекта