File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ dependencies {
21
21
class AppConfiguration
22
22
```
23
23
24
- ### 3. Use @CsvDataSource Annotation
24
+ Let's consider the following example: reading from a CSV file.
25
+
26
+ ### 3. Use @CsvDataSource Annotation
25
27
26
28
``` kotlin
27
29
@Component
@@ -103,7 +105,7 @@ RuntimeException: Failed to read CSV file 'customers.csv' for property 'customer
103
105
### Common Issues
104
106
105
107
1 . ** ClassNotFoundException** : Ensure Spring dependencies are available
106
- 2 . ** FileNotFoundException** : Check CSV file paths are correct
108
+ 2 . ** FileNotFoundException** : Check file paths are correct
107
109
3 . ** PropertyAccessException** : Ensure DataFrame properties are ` lateinit var `
108
110
4 . ** NoSuchBeanDefinitionException** : Enable component scanning or register manually
109
111
You can’t perform that action at this time.
0 commit comments