0

編集: これは、コンポーネントの AJAX 呼び出し中に発生します。

Spring Security 3.2 とともに ICEFaces 3.2.0 コミュニティを使用して Web アプリケーションを構築しています。数日前まではすべて順調に進んでいました。次の例のように、バッキング Bean が値にアタッチされたページに ACE AutoCompleteEntry コンポーネントがあります。

<ace:autoCompleteEntry id="autoCompleteState"
                   label="State"
                   labelPosition="top"
                   value="#{autoCompleteEntry.selectedText}"
                   rows="10" width="160"
                   filterMatchMode="startsWith">
    <f:selectItems value="#{autoCompleteEntry.states}"/>
</ace:autoCompleteEntry>

添付されているバッキング Bean は次のとおりです。

@ManagedBean(name=AutoCompleteEntry.BEAN_NAME)
@SessionScoped

public class AutoCompleteEntry implements Serializable {
    public static final String BEAN_NAME = "autoCompleteEntry";

    public static final String STATE_FILENAME = "State_Names.txt";
    public static final String RESOURCE_PATH = "/resources/selectinputtext/";

    public AutoCompleteEntry() {        
    }

    public List<SelectItem> states;    
    public List<SelectItem> getStates() {
        if(states == null) {
            states = new ArrayList<SelectItem>();
            for(String state : readStateFile()) {
                states.add(new SelectItem(state));
            }
        }
        return states;
    }

    private String selectedText = null;
    public String getSelectedText() {return selectedText;}
    public void setSelectedText(String selectedText) {this.selectedText = selectedText;}

    private static List<String> readStateFile() {
        InputStream fileIn = null;
        BufferedReader in = null;

        try {
            FacesContext fc = FacesContext.getCurrentInstance();
            ExternalContext ec = fc.getExternalContext();
            fileIn = ec.getResourceAsStream(AutoCompleteEntry.RESOURCE_PATH + STATE_FILENAME);

            if(fileIn != null) {
                in = new BufferedReader(new InputStreamReader(fileIn));
                List<String> loadedStates = new ArrayList<String>(53);
                String read;
                while((read = in.readLine()) != null) {
                    loadedStates.add(read);
                }

                return loadedStates;
            }
        }catch (IOException failedRead) {
            failedRead.printStackTrace();
        }finally {
            try {
                if(in != null) {
                    in.close();
                }
            }catch (IOException failedClose) {
                failedClose.printStackTrace();
            }
        }

        List<String> errorReturn = new ArrayList<String>(1);
        errorReturn.add("Error Loading State List");
        return errorReturn;
    }
}

問題は、状態のリストを表示する代わりにコンポーネントをテストしようとするたびに、メイン ページの絶対パスにリダイレクトされ、404 が発生することです。開発者ツールでは、次のエラーが表示されます。

> Uncaught TypeError: Cannot read property 'value' of undefined
bridge.uncompressed.js.jsf:2701
namespace.onAfterUpdate.viewIDElement bridge.uncompressed.js.jsf:2701
apply bridge.uncompressed.js.jsf:122
(anonymous function) bridge.uncompressed.js.jsf:484
(anonymous function) bridge.uncompressed.js.jsf:363
(anonymous function) bridge.uncompressed.js.jsf:240
broadcast bridge.uncompressed.js.jsf:483
(anonymous function) bridge.uncompressed.js.jsf:1928
sendEvent jsf.js.jsf:1447
AjaxEngine.req.sendRequest jsf.js.jsf:1333
request jsf.js.jsf:1834
fullSubmit bridge.uncompressed.js.jsf:2309
submit bridge.uncompressed.js.jsf:2314
iceSubmit compat.uncompressed.js.jsf:1523
onclick

開発者ツールのログには次のように表示されます。

> [window] persisted focus for element "autoCompleteState_input"
bridge.uncompressed.js.jsf:1252
[window] full submit to localhost:8181/HHCA_Portal/pages/secure/HHCA.jsf
javax.faces.execute: @all
javax.faces.render: patientRecordsForm
javax.faces.source: autoCompleteState_input
view ID: v33tl98j
event type: unknown bridge.uncompressed.js.jsf:1252
XHR finished loading: "localhost:8181/HHCA_Portal/pages/secure/HHCA.jsf".
jsf.js.jsf:1334
AjaxEngine.req.sendRequest jsf.js.jsf:1334
request jsf.js.jsf:1834
fullSubmit bridge.uncompressed.js.jsf:2309
ice.ace.AjaxRequest ace-jquery.uncompressed.js.jsf:20854
ice.ace.ab ace-jquery.uncompressed.js.jsf:20779
ice.ace.Autocompleter.getUpdatedChoices autocompleteentry.js.jsf:695
ice.ace.Autocompleter.onObserverEvent autocompleteentry.js.jsf:637
(anonymous function)

私はこの問題やその他の問題に何時間も費やしましたが、アイデアが尽きてしまいました。誰かが何らかの支援をしてくれたら、本当に助かります。

4

1 に答える 1

1

JSF 2 を使用している場合は、独自の例外ハンドラを追加できます。これにより、ajax リクエストをキャプチャできるはずです。

<factory>
  <exception-handler-factory>
    test.MyExceptionHandlerFactory
  </exception-handler-factory>
</factory>

こちらの例を参照してください。

http://balusc.blogspot.com/2012/03/full-ajax-exception-handler.html

http://wmarkito.wordpress.com/2012/04/05/adding-global-exception-handling-using-jsf-2-x-exceptionhandler/

于 2013-02-26T16:15:05.490 に答える