springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde 创建springboot项目后启动,报错为 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2019-09-26 09:54…
springboot项目启动可通过下面的shell脚本启动. startup.sh app=order-service-rest.jar appout=logs/${app/.jar/.out} appoutHisDir=logs/`date "+%Y%m%d"` if test ! -d 'logs' ; then mkdir logs fi if test ! -f $appout ; then touch $appout fi if test ! -d $appoutHisDir…