1

私はmanagedBeanfileUploadファイルがアップロードされたら、パーサードロップダウンから選択された値に基づいて異なるパーサーを呼び出す必要があります。次に、パーサーで、その特定のクラスのメソッドを呼び出している場所のオブジェクトを作成していますDetailsClass。はfaces-config.xmlに登録されています、ここでの私の質問はgetDetailsparserClassDetailsClass

  • FileUploadクラス間でセッション情報を維持したい場合は、それを定義する必要がありますが、クラスをどのように定義する必要がParserありますか、それは他のものとして定義する必要がありますか?DetailsClassfaces-config.xmlparserDetailsClassmanagedBean

コードは次のとおりです。

私のmanagedBeanクラスには、次の2つの関数がfileUploadありcallParserます。

 public void uploadFile(FileEntryEvent event)
{
    FacesContext ctx = FacesContext.getCurrentInstance();
    //Setting getSession to false, container will not create new session if session is not present and return null
    HttpSession session = (HttpSession) ctx.getExternalContext().getSession(false);
    setSession(session);

    resultBean = new ResultBean();
    FileEntry fileEntry = (FileEntry) event.getSource();
    FileEntryResults results = fileEntry.getResults();
    FileEntry fe = (FileEntry) event.getComponent();

    FacesMessage msg = new FacesMessage();
    for (FileEntryResults.FileInfo fileInfo : results.getFiles())
    {
        if (fileInfo.isSaved())
        {
            File file = fileInfo.getFile();
            String filePath = file.getAbsolutePath();
            callParser(selectedItem, filePath);
        }
        resultBeanList.add(resultBean);
    }
}

private void callParser(String parserType, String filePath)
{
    if ("Delta".equals(parserType))
    {
        PositionParserDelta deltaParser = new PositionParserDelta();
        deltaParser.getQuotes(filePath);
    }
    else if ("Gamma".equals(parserType))
    {
        PositionParserGamma gammaParser = new PositionParserGamma();
        gammaParser.getQuotes(filePath);
    }
}

さて、考えてみましょう。Delta Parserそのクラスでは、次のようなものがあります。

public class PositionParserDelta extends Base
{
    List<String[]> dataList = new ArrayList<String[]>();
    ContractManager contractManager = new ContractManager();

    public PositionParserDelta()
    {
    }

    public void getQuotes(String fileName)
    {
        try
        {
            Map<String, ContractSeries> gsLookup = contractManager.getContractsMap(ContractManager.VendorQuotes.KRT);
            CSVReader reader = new CSVReader(new FileReader(fileName), '\t');
            String[] header = reader.readNext();
            dataList = reader.readAll();
            List<Trade> tradeBeanList = new ArrayList<Trade>();
            for (String[] data : dataList)
            {
                //Some Business Logic
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}

私のcontractManagerクラスは

    public class ContractManager extends Base
    {
        private List<Series> List = new ArrayList<Series>();
        private ContractSeries[] SeriesList = new Series[3];
        private ListingOps listingOps;

//This line throws error as faces class not found and it makes sense because am not registering this with faces-config.xml
        HttpSession session = (HttpSession) FacesContext.getCurrentInstance().getExternalContext().getSession(false);

        public List<ContractSeries> getContracts(long orgId, HttpSession session)
        {
            log.info("Inside getContracts method call");
            if (false)
            {
                //Some Logic
            }
            else
            {
                try
                {
                    //Set session and get initialContext to retrieve contractSeries data from ejb calls
                    log.info("Trying to get allContractSeries data from listingOpsBean");
                    Series[] allSeries = deltaOps.findAllSeries(true);
                    Collections.addAll(contractList, allContractSeries);
                }
                catch (Exception ex)
                {

                }
            }
            return contractList;
        }

        public Map<String, ContractSeries> getContractsMap(VendorQuotes vendorQuotes)
        { //Some Logic
    }

しかし、faces-config.xmlファイルでは、

 <managed-bean>
        <managed-bean-name>fileUpload</managed-bean-name>
        <managed-bean-class>trade.UploadBlotterBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
</managed-bean>

基本的に私の質問は、

それ以降に他のクラスを呼び出す場合、managedBeanそれらはどのように定義する必要がありますか。また、に慣れていないため、他のクラスを呼び出して、それらのクラスにビジネスロジックを含めることは良い習慣と見なされますか。faces-config.xmlJSFmanagedBean

また、クラスUploadFile全体で取得したセッションを維持していることを確認する必要があります。ParserContractMapping

また、

すべてがfaces-configのマネージドBeanとして「登録」されていますか?

4

1 に答える 1

1

わかりませんが、すべてのBeanはのように登録されていると思い<managed-bean>ますfaces-config。クラスが果たす特定の役割については、次のように分類できます。

  1. Model Managed-Bean

  2. Managed-Beanのバッキング

  3. コントローラマネージドBean

  4. Managed-Beanのサポート

  5. ユーティリティマネージド-Bean..。

それらに適切な名前を付けることにより、でそれらを区別することができますfaces-config。Beanが提供する作業に従って、スコープを設定します。

于 2012-04-23T15:40:03.423 に答える