Редактирование файла tomcat server.xml с использованием сценария ruby - PullRequest
0 голосов
/ 19 сентября 2018

У меня есть ниже требование для редактирования XML-файла с использованием сценария ruby.

Может ли кто-нибудь помочь мне в этом

Input file:
<Connector port="8080" protocol="HTTP/1.1" 
connectionTimeout="20000" 
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
 port="8080" protocol="HTTP/1.1" 
 connectionTimeout="60000" 
 redirectPort="8443" />
 -->    
Define a SSL HTTP/1.1 Connector on port 8443
     This connector uses the JSSE configuration, when using APR, the 
     connector should be using the OpenSSL style configuration
     described in the APR documentation -->
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
           maxThreads="150" scheme="https" secure="true"
           clientAuth="false" sslProtocol="TLS" />
-->

<!-- An dskggmsdsd >

Requirement:

сценарий1: Добавить "connectionTimeout= "20000" ", если отсутствует в вышеуказанном файле в строке Соединитель

сценарий 2: если доступно connectionTimeout =" 20000 "и если значение отличается от 20000, замените значение на 20000

сценарий 3: если connectionTimeout = "20000" доступен во всех местах подключения, оставьте его, ничего не меняя

Заранее спасибо

...