[
https://issues.apache.org/jira/browse/CLK-716?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Adrian A. closed CLK-716.
-------------------------
closing issue fixed a long time ago
> XmlConfigService throws exception with autobinding value of "default"
> ---------------------------------------------------------------------
>
> Key: CLK-716
> URL: https://issues.apache.org/jira/browse/CLK-716
> Project: Click
> Issue Type: Bug
> Components: core
> Affects Versions: 2.2.0
> Environment: Java 1.6, Jetty 7, Mac OS X
> Reporter: Ryan Holmes
> Fix For: 2.3.0-M1
>
>
> The click-2.2.dtd specifies a default value of "default" for the autobinding
> attribute of the pages element:
> <!-- Application pages. -->
> <!ELEMENT pages (page*, excludes*)>
> <!ATTLIST pages package CDATA #IMPLIED>
> <!ATTLIST pages automapping (true|false) "true">
> <!ATTLIST pages autobinding (default|annotation|none) "default">
> This causes the following exception when the DTD is specified in click.xml
> and no autobinding value is supplied (or a value of "default" is specified):
> java.lang.RuntimeException: Invalid pages autobinding attribute: default
> at
> org.apache.click.service.XmlConfigService.loadPages(XmlConfigService.java:994)
> at
> org.apache.click.service.XmlConfigService.onInit(XmlConfigService.java:240)
> at
> org.apache.click.ClickServlet.initConfigService(ClickServlet.java:1687)
> at org.apache.click.ClickServlet.init(ClickServlet.java:197)
> at
> org.apache.click.extras.spring.SpringClickServlet.init(SpringClickServlet.java:387)
> at javax.servlet.GenericServlet.init(GenericServlet.java:241)
> I marked this bug as major priority because an exception is thrown with a
> minimal click.xml file (at least when using the DTD), so the impact to
> out-of-the-box functionality is pretty severe.
> A quick look at the code reveals that XmlConfigService expects an autobinding
> value of "public" instead of "default". This conflicts with both the DTD and
> the documentation for click.xml. Since an autobinding value of "public" is
> not documented anywhere as far as I can tell and since XmlConfigService maps
> "public" to the AutoBinding.DEFAULT enum, the use of "public" is most likely
> a typo and should simply be replaced with "default".
--
This message was sent by Atlassian JIRA
(v6.1#6144)