Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refined INTEGRATION_GUIDE.md: improved phrasing and added an example …
…to clarify @CsvDataSource usage.
  • Loading branch information
zaleslaw committed Sep 1, 2025
commit a322fa101bda3edbeff587bdbdbb5cced7bde0b2
6 changes: 4 additions & 2 deletions dataframe-spring/INTEGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ dependencies {
class AppConfiguration
```

### 3. Use @CsvDataSource Annotation
Let's consider the following example: reading from a CSV file.

### 3. Use @CsvDataSource Annotation

```kotlin
@Component
Expand Down Expand Up @@ -103,7 +105,7 @@ RuntimeException: Failed to read CSV file 'customers.csv' for property 'customer
### Common Issues

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

Expand Down