SpringBoot项目在eclipse中能运行,部署到服务器 nohup java -jar 方式运行就无法显示报错:
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
解决问题办法记录一下。
首先发现问题是因为代码改动量比较大,一次性提交后可能编译问题原因看图片:
上面几个是项目模块,sanxia-jeedp是总的项目包含以上模块。
如果由于改动量大和包结构变动,本地clean 和 install几个模块后本地eclipse运行没问题,当install打包后上传服务器会报以上错误,解决办法:
右键sanxia-jeedp总项目,run as -->maven build…
然后输入:clean install -Dmaven.test.skip,然后点击Run.见下图,这样会把所有子模块包结构重新打包梳理,然后可执行的jar文件就可以在服务器上运行起来了。
-Dmaven.test.skip区别:
-DskipTests,不执行测试用例,但编译测试用例类生成相应的class文件至target/test-classes下。
-Dmaven.test.skip=true,不执行测试用例,也不编译测试用例类。
运行中在clean时候如果报错无法完成clean操作的话,最终办法就是注销一下计算机,然后回来再clean就可以了。