qqqqq

List<BusinessExperienceParentType> businessExperienceParentTypeLists =  businessExperienceParentTypeDao.getBusinessExperienceParentTypeAll();
		BusinessExperienceParentType firstBusinessExperienceParentType = businessExperienceParentTypeLists.get(0);
		request.setAttribute("firstBusinessExperienceParentType", firstBusinessExperienceParentType);
		request.setAttribute("businessExperienceParentTypeLists", businessExperienceParentTypeLists);
		
		List<ProductParentType> productParentTypeLists = productParentTypeDao.getProductParentTypesAll();
		ProductParentType firstProductParentType = productParentTypeLists.get(0);
		request.setAttribute("firstProductParentType", firstProductParentType);
		
		List<SolutionParentType> solutionParentTypeLists = solutionParentTypeDao.getSolutionParentTypesAll();
		SolutionParentType firstSolutionParentType = solutionParentTypeLists.get(0);
		request.setAttribute("firstSolutionParentType", firstSolutionParentType);
		
		request.setAttribute("productParentTypeLists", productParentTypeLists);
		request.setAttribute("solutionParentTypeLists", solutionParentTypeLists);
		
		List<SuccessfulCase> successfulCaseLists = successfulCaseDao.getAllSuccessfulCase();
		request.setAttribute("successfulCaseLists", successfulCaseLists);

你可能感兴趣的:(java)