在cfx-client ule子中是否适合发送带有体内输入参数的http post请求。
这是我下面需要的。
请求:
http://localhost:8088/test/integrate
请求主体中的参数如令牌和guid
响应:
<!--Kill the started process.-->
<target>
<exec executable="bash"
dir="${project.build.directory}"
spawn="false">
<arg value="-c"/>
<arg value="ps ax | grep -i '${project.artifactId}' | awk 'NR==1{print $1}' | xargs kill -SIGTERM"/>
</exec>
</target>