Results 1 to 1 of 1
- 10-04-2007, 09:17 PM #1
XML-based configuration metadata in Spring Framework
Following is the example of the configuration metadata in Spring Framework:
Java Code:<?xml version="1.0" encoding="UTF-8"?> <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="..." class="..."> <!-- configuration for this bean --> </bean> <bean id="..." class="..."> <!-- configuration for this bean --> </bean> <!-- more bean definitions go here... --> </beans>
Similar Threads
-
XML-based configuration metadata in Spring Framework
By Java Tip in forum Java TipReplies: 0Last Post: 04-01-2008, 10:45 AM -
What is use of NamedParameterJdbcTemplate in Spring Framework
By Java Tip in forum Java TipReplies: 0Last Post: 04-01-2008, 10:39 AM -
How to use XML-based configuration metadata shortcuts
By Java Tip in forum Java TipReplies: 0Last Post: 03-30-2008, 10:06 AM -
How to use XML-based configuration metadata shortcuts
By JavaBean in forum Java TipReplies: 0Last Post: 09-26-2007, 08:38 PM -
What is weaving in Spring Framework
By JavaBean in forum Java TipReplies: 0Last Post: 09-26-2007, 08:30 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks