Junior — Middle
Have you worked with configuring applications using XML files?
sobes.tech AI
Answer from AI
Yes, I have experience working with application configuration through XML files. XML is often used in Java for configuration, for example, in the Spring Framework for defining beans and dependencies.
Here's an example of a simple XML config for Spring:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="myService" class="com.example.MyService" />
</beans>
This file allows centralized management of settings and dependencies without changing the code.