anagramdemo/anagrambase/src/main/resources/org/apidesign/demo/anagramwithspringandlookup/Main.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 27 Apr 2009 10:03:54 +0200
changeset 579 5092d8fdef3d
child 584 e715e6651175
permissions -rw-r--r--
Anagrams game with Main.xml config file that defines the autoload and a test to show that if simplescrambler and staticwordlibrary are on classpath, everything succeeds
jtulach@579
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@579
     2
<beans xmlns="http://www.springframework.org/schema/beans"
jtulach@579
     3
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@579
     4
       xmlns:context="http://www.springframework.org/schema/context"
jtulach@579
     5
       xmlns:lang="http://www.springframework.org/schema/lang"
jtulach@579
     6
       xmlns:util="http://www.springframework.org/schema/util"
jtulach@579
     7
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
jtulach@579
     8
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
jtulach@579
     9
       http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd
jtulach@579
    10
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd">
jtulach@579
    11
jtulach@579
    12
    <bean
jtulach@579
    13
        id="ui"
jtulach@579
    14
        class="org.apidesign.demo.anagramwithspringandlookup.Anagrams"
jtulach@579
    15
        autowire="autodetect"
jtulach@579
    16
    />
jtulach@579
    17
</beans>