通过shell脚本进行maven构建时,Hibernate JDBC连接异常

时间:2018-10-03 07:28:36

标签: java hibernate shell

我有一个maven项目,如果我通过命令行执行该项目,则构建成功,而如果通过脚本进行,则构建失败

我的脚本如下:-

cd $PROJECT_HOME
mvn clean install -DskipTest
if [[ "$?" -ne 0 ]] ; then
  echo 'run not successful exiting'; exit $rc
else
  echo 'build successful,deploying it to docker container'
fi

我收到如下错误消息

  

准备(com.marketo.asset.smartlist.service.AutoSuggestServiceTest)经过的时间:32.348秒<<<失败!   org.springframework.transaction.CannotCreateTransactionException:无法打开Hibernate Session进行事务处理。嵌套的异常是org.hibernate.exception.JDBCConnectionException:无法打开连接   引起原因:org.hibernate.exception.JDBCConnectionException:无法打开连接   引起原因:com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:   通讯链接失败

0 个答案:

没有答案