Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Assess and migrate workloads from AWS, GCP, or other clouds to Azure services.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/container-apps/spring-dependency-patterns.md
1# Spring Dependency Configuration Patterns23Common dependency and configuration patterns to identify during assessment.45## Database Configuration67**Maven (pom.xml):**8```xml9<dependency>10<groupId>org.springframework.boot</groupId>11<artifactId>spring-boot-starter-data-jpa</artifactId>12</dependency>13```1415**application.properties:**16```properties17spring.datasource.url=jdbc:mysql://localhost:3306/mydb18spring.datasource.username=dbuser19spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver20```2122**application.yml:**23```yaml24spring:25data:26mongodb:27uri: mongodb://<username>:<password>@server:2701728```2930## JMS Message Brokers3132**ActiveMQ (pom.xml):**33```xml34<dependency>35<groupId>org.springframework.boot</groupId>36<artifactId>spring-boot-starter-activemq</artifactId>37</dependency>38```3940**application.properties:**41```properties42spring.activemq.broker-url=tcp://localhost:6161643spring.activemq.user=admin44```4546## External Caches4748**Redis with Spring Data Redis:**49- Check for `spring-boot-starter-data-redis` dependency50- Review application.properties for Redis connection strings51- Check for Spring Session configuration (in-memory → Redis)52