これが私のxhtmlページです:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Index</title>
<style>
.error {
background-color: #fdd;
}
</style>
</h:head>
<h:body>
<h:messages style="color: orange" />
<h:form>
<h:inputText value="#{myBacking.um}" required="true" />
<h:commandButton value="Submit" action="#{myBacking.acme}" />
</h:form>
</h:body>
</html>
mojarra 2.0.9 と mojarra 2.1.8 でテストしましたが、どちらもh:inputText
コンポーネントの ID を生成しません。JSFのバグですか?