私はmanagedBean
、fileUpload
ファイルがアップロードされたら、パーサードロップダウンから選択された値に基づいて異なるパーサーを呼び出す必要があります。次に、パーサーで、その特定のクラスのメソッドを呼び出している場所のオブジェクトを作成していますDetailsClass
。はfaces-config.xmlに登録されています、ここでの私の質問はgetDetails
parserClass
DetailsClass
FileUpload
クラス間でセッション情報を維持したい場合は、それを定義する必要がありますが、クラスをどのように定義する必要がParser
ありますか、それは他のものとして定義する必要がありますか?DetailsClass
faces-config.xml
parser
DetailsClass
managedBean
コードは次のとおりです。
私の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.xml
JSF
managedBean
また、クラスUploadFile
全体で取得したセッションを維持していることを確認する必要があります。Parser
ContractMapping
また、
すべてがfaces-configのマネージドBeanとして「登録」されていますか?