[JAVA-27821] Upgrade Azure to Spring Boot 3 (#16304)

This commit is contained in:
sam-gardner 2024-04-09 07:22:57 +01:00 committed by GitHub
parent e6c33f07c4
commit 84d5277359
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 7 deletions

View File

@ -11,9 +11,9 @@
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId> <artifactId>parent-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath> <relativePath>../parent-boot-3</relativePath>
</parent> </parent>
<dependencies> <dependencies>
@ -98,7 +98,7 @@
</property> </property>
<property> <property>
<name>spring.datasource.password</name> <name>spring.datasource.password</name>
<value></value> <value>test</value>
<!--<value>replace-with-your-password</value> --> <!--<value>replace-with-your-password</value> -->
</property> </property>
</appSettings> </appSettings>
@ -113,6 +113,14 @@
<!--</resource> --> <!--</resource> -->
<!--</resources> --> <!--</resources> -->
</configuration> </configuration>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>
</dependencies>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>

View File

@ -1,9 +1,9 @@
package com.baeldung.springboot.azure; package com.baeldung.springboot.azure;
import javax.persistence.Entity; import jakarta.persistence.Entity;
import javax.persistence.GeneratedValue; import jakarta.persistence.GeneratedValue;
import javax.persistence.GenerationType; import jakarta.persistence.GenerationType;
import javax.persistence.Id; import jakarta.persistence.Id;
/** /**
* @author aiet * @author aiet