如何将maven模式的springboot项目转换为普通项目? 50
请问如能将一个需要使用mybatis的springboot项目从maven模式转换为普通模式?目前项目的依赖包括:<parent><groupId>org.springf...
请问如能将一个需要使用mybatis的springboot项目从maven模式转换为普通模式?
目前项目的依赖包括:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
如此在可联网的开发环境(eclipse)下是可以正常运行的,但如果将该项目转换为普通项目并在Java Build Path的Libraries中将通过mvn dependency:copy-dependencies -DoutputDirectory=lib -DincludeScope=compile方式导出的所依赖的全部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
请问需要如何处理才能在这种情况正常启动? 展开
目前项目的依赖包括:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
如此在可联网的开发环境(eclipse)下是可以正常运行的,但如果将该项目转换为普通项目并在Java Build Path的Libraries中将通过mvn dependency:copy-dependencies -DoutputDirectory=lib -DincludeScope=compile方式导出的所依赖的全部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
请问需要如何处理才能在这种情况正常启动? 展开
3个回答
展开全部
maven项目运行的时候 你可以看到一大段的java命令
直接用那段命令应该能启动吧
直接用那段命令应该能启动吧
追问
那些只是日志信息吧?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这是配置文件没有加载,你看看你设置url的datasource的配置文件配置加载了吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的项目配置文件是.yml文件还是.properties文件?检查一下里面数据库连接的url参数是否有问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询