springboot添加ojdbc6报错

springboot一般添加ojdbc6数据库驱动会报错,依赖无法添加。原因ojdbc6数据库驱动是收费的,无法通过maven直接进行下载,需要手动下载ojdbc6.jar,把其手动添加到自己的仓库里面

第一步下载ojdbc6的jar包 下载的地址

https://mvnrepository.com/artifact/com.oracle/ojdbc6/11.2.0.3

选择jar将其下载下来

第二步将自己下载下来的jar重命名ojdbc6放到c盘用户的目录下

第三步这个目录打开cmd窗口

执行命令

mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6.jar

将其添加到自己的maven中去

出现这个表示添加成功

第四步去自己的仓库查看

jar包已经添加进来了

只是添加依赖就不会报错了

<!-- oracle数据库驱动 -->
		<dependency>
			<groupId>com.oracle</groupId>
			<artifactId>ojdbc6</artifactId>
			<version>11.2.0.3</version>
		</dependency>

原文地址:https://www.cnblogs.com/wang66a/p/12069300.html

时间: 2024-10-08 11:37:50

springboot添加ojdbc6报错的相关文章

springboot项目启动报错 url&#39; attribute is not specified and no embedded datasource could be configured

报错相关信息: 2019-07-22 17:12:48.971 ERROR 8312 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not

第一个springboot项目启动报错Failed to configure a DataSource: &#39;url&#39; attribute is not specified and no embedded datasource could be configured.

报错内容具体如下 *************************** 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

springboot 新工程报错 Failed to configure a DataSource: &#39;url&#39; attribute is not specified and no embedded datasource could be configured.

错误日志 ... ... Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020-04-02 12:52:47.306 ERROR 22036 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLIC

1. 今天添加SDK报错的原因

今天郁闷至极,真机调试时,昨天建好的工程文件一大早来就无法识别手机,还报一大堆的错,后来下午实在没办法,把工程件删了,重新见一个工程,这下竟然没报错了,但是一添加sdk文件进里面去又报错,我日,直接快让我崩溃了,我当时采用的是直接用"Add Files to xxx", 后来才知道这样添加编译器找不到文件,而是要用到Build Phases ->compile sources--添加文件:   link binary with libraries 添加静态库.然后就解决问题了.

SpringBoot集成MybatisPlus报错

SpringBoot集成MybatisPlus报错 启动的时候总是报如下错误: java.lang.annotation.AnnotationFormatError: Invalid default: public abstract java.lang.Class 解决方案 需要一个mybatis-spring-boot-starter的包,在pom文件加上之后,完美解决. <dependency> <groupId>org.mybatis.spring.boot</grou

idea中的springboot+gradle项目报错springboot configuration annotation processor not found in classpath

idea中的springboot项目,打开某个类run.halo.app.config.properties.HaloProperties.java,报错(使用gradle编译): springboot configuration annotation processor not found in classpath 网上的解决方案是pom.xml文件里面添加如下配置. <!-- 自定义的元数据依赖-><dependency> <groupId>org.springfr

spring-boot:run启动报错

Intellij Idea中的spring boot项目,使用main方法运行可以启动,但是使用mvn spring-boot:run启动总是报错 大概意思就是找不到类:org/apache/maven/shared/artifact/filter/collection/ArtifactsFilter 原来是没有在仓库中找到对应的插件,指定一个找得到的版本号即可解决 <build> <plugins> <plugin> <groupId>org.spring

【vagrant】第一次安装添加box报错:The box failed to unpackage properly....

报错信息 The box failed to unpackage properly. Please verify that the box file you're trying to add is not corrupted and that enough disk space is available and then try again. The output from attempting to unpackage (if any): x ./box.ovf x ./Vagrantfile

UIScrollView添加约束报错问题

UIScrollView如果拉到storyBoard上,按照其他视图一样添加约束,会发现报错,然后往上面添加视图同样报错,那么这到底是为什么呢? 其实,这和UIScrollView的contentSize有关联,因为无法确定它的大小,贸然的添加约束肯定不合理,只有当其中的布局都设置好了,根据其中的子控件来决定它的contentSize,这才是正确的做法. 那该如何解决这种问题呢,我觉得正确的做法如下: 1.拉取一个UIScrollView,可以拉动大小,但是不要添加约束. 2.然后拉取一个UIV