为什么在将嵌入式tomcat服务器中的spring boot项目部署到jboss中时会出现此错误?

时间:2017-08-23 06:18:52

标签: hibernate spring-boot gradle jboss war

awk '
FNR>1 && FNR==NR{
   a[$1]++;
   b[$1]=b[$1]?b[$1] ORS $0:$0;
   c[$1,$2];
   next
}
FNR==1 && FNR!= NR{
   print $0,"percentage";
   next
}
($1 in b){
   if($2=="Science" && (100/a[$1])>49){
     print b[$1]
}
}
'  Input_file Input_file

我正在尝试将一个spring boot war部署到jboss服务器中。它在嵌入式Tomcat服务器中运行完美,但在部署到Jboss时会抛出此错误。我正在使用hibernate v5.2.10和hibernate jpa v2.1。

0 个答案:

没有答案