inflearn logo
Course

Course

Instructor

pinest's Posts

pinest pinest

@pinest

Reviews Written
2
Average Rating
4.0

Posts 2

Q&A

binding error

myserver: context-path: /my-app port: 9090 data: url: jdbc:h2:mem: driver-class-name: org.h2.Driver username: sa password:

Likes
0
Comments
3
Viewcount
247

Q&A

binding error

@ExtendWith(SpringExtension::class) @ContextConfiguration(classes = [SpringBootTobyApplication::class]) @TestPropertySource(locations = ["classpath:application.yml"]) class MyDataSourcePropertiesTest { @Autowired private lateinit var myDataSourceProperties: MyDataSourceProperties @Test fun testPropertiesBinding() { assertNotNull(myDataSourceProperties) assertNotNull(myDataSourceProperties.url) assertNotNull(myDataSourceProperties.driverClassName) } }

Likes
0
Comments
3
Viewcount
247