Skip to content

Commit a322fa1

Browse files
committed
Refined INTEGRATION_GUIDE.md: improved phrasing and added an example to clarify @CsvDataSource usage.
1 parent 3f131ff commit a322fa1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dataframe-spring/INTEGRATION_GUIDE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ dependencies {
2121
class AppConfiguration
2222
```
2323

24-
### 3. Use @CsvDataSource Annotation
24+
Let's consider the following example: reading from a CSV file.
25+
26+
### 3. Use @CsvDataSource Annotation
2527

2628
```kotlin
2729
@Component
@@ -103,7 +105,7 @@ RuntimeException: Failed to read CSV file 'customers.csv' for property 'customer
103105
### Common Issues
104106

105107
1. **ClassNotFoundException**: Ensure Spring dependencies are available
106-
2. **FileNotFoundException**: Check CSV file paths are correct
108+
2. **FileNotFoundException**: Check file paths are correct
107109
3. **PropertyAccessException**: Ensure DataFrame properties are `lateinit var`
108110
4. **NoSuchBeanDefinitionException**: Enable component scanning or register manually
109111

0 commit comments

Comments
 (0)