shell脚本 #!/bin/bashJENKINS_HOME=/usr/local/jenkinsTOMCAT_HOME=/usr/local/jenkins/tomcat-testSHUTDOWN=$TOMCAT_HOME/bin/shutdown.shSTARTTOMCAT=$TOMCAT_H Read More
springMVC请求接口的时候报500 No converter found for return value of type 原因:这是因为springmvc默认是没有对象转换成json的转换器的,需要手动添加jackson依赖。 如果还是没有解决,则进行以下步骤 在springmvc配置文件中 Read More