How to import/load multiple spring configuration file

In Spring configuration file we can import other context.xml files using <import resource=”xxxx”> tag.

Example

<import resource="classpath:com/pretech/applicationContext.xml"/>

No comments:

Post a Comment

12 classic String-based Java interview questions with simple explanations and code.

  1️⃣ Check if a String is a Palindrome Problem Given a string, check if it reads the same forward and backward. Example: "madam...

Featured Posts