| Categories | 
                CategoriesSpring Boot Container Microservices | 
        
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
    
| ArtifactId | ArtifactIdspring-boot-starter-jdbc | 
    
| Version | Version1.5.10.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-jdbc/ -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
    <version>1.5.10.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-jdbc/
implementation 'org.springframework.boot:spring-boot-starter-jdbc:1.5.10.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-jdbc/
implementation ("org.springframework.boot:spring-boot-starter-jdbc:1.5.10.RELEASE")
                'org.springframework.boot:spring-boot-starter-jdbc:jar:1.5.10.RELEASE'
                <dependency org="org.springframework.boot" name="spring-boot-starter-jdbc" rev="1.5.10.RELEASE">
  <artifact name="spring-boot-starter-jdbc" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework.boot', module='spring-boot-starter-jdbc', version='1.5.10.RELEASE')
)
                libraryDependencies += "org.springframework.boot" % "spring-boot-starter-jdbc" % "1.5.10.RELEASE"
                [org.springframework.boot/spring-boot-starter-jdbc "1.5.10.RELEASE"]