Springboot + Stopping service [Tomcat]+ Process finished with exit code 0

时间:2019-03-29 12:03:14   收藏:0   阅读:377

在Springboot 的版本为:

<version>1.5.10.RELEASE</version>

 

原因代码中有非法格式的结构,及代码写错啦,例如:

<resultMap id="getUserMap" type="com.handsight.platform.fras.pojo.EntityMap.VoUser">

//正确操作

<result property="useraccount" column="USERACCOUNT" ></result>
<result property="devicefigure" column="DEVICEFIGURE" ></result>
<result property="platform" column="PLATFORM" ></result>
//错误操作
<result property="pushkey" column="PUSHKEY" jdbcType="String"></result>    //加入 jdbcType= 就会报错,并停止启动Tomcat,应去掉
</resultMap>

 

原文:https://www.cnblogs.com/leeego-123/p/10619730.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!