/** * Standard way of initializing this filter. Map config parameters onto bean properties of this * filter, and invoke subclass initialization. * * @param filterConfig the configuration for this filter * @throws ServletException if bean properties are invalid (or required properties are missing), * or if subclass initialization fails. * @see #initFilterBean */ public final void init(FilterConfig filterConfig) throws ServletException { Assert.notNull(filterConfig, "FilterConfig must not be null"); if (logger.isDebugEnabled()) { logger.debug("Initializing filter '" + filterConfig.getFilterName() + "'"); } this.filterConfig = filterConfig; // Set bean properties from init parameters. try { PropertyValues pvs = new FilterConfigPropertyValues(filterConfig, this.requiredProperties); BeanWrapper bw = new BeanWrapperImpl(this); ResourceLoader resourceLoader = new ServletContextResourceLoader(filterConfig.getServletContext()); bw.registerCustomEditor(Resource.class, new ResourceEditor(resourceLoader)); initBeanWrapper(bw); bw.setPropertyValues(pvs, true); } catch (BeansException ex) { String msg = "Failed to set bean properties on filter '" + filterConfig.getFilterName() + "': " + ex.getMessage(); logger.error(msg, ex); throw new NestedServletException(msg, ex); } // Let subclasses do whatever initialization they like. initFilterBean(); if (logger.isDebugEnabled()) { logger.debug("Filter '" + filterConfig.getFilterName() + "' configured successfully"); } }
/** * @param component The component to analyse. * @return All config options of the component with their respective value. */ public static Map<ConfigOption, Object> getConfigOptionValues(Component component) { Map<ConfigOption, Object> optionValues = new HashMap<ConfigOption, Object>(); List<Field> fields = getAllFields(component); for (Field field : fields) { ConfigOption option = field.getAnnotation(ConfigOption.class); if (option != null) { try { // we invoke the public getter instead of accessing a private field (may cause problem // with SecurityManagers) // use Spring BeanUtils TODO: might be unnecessarily slow because we already have the // field? Object value = BeanUtils.getPropertyDescriptor(component.getClass(), field.getName()) .getReadMethod() .invoke(component); optionValues.put(option, value); } catch (IllegalArgumentException e1) { e1.printStackTrace(); } catch (IllegalAccessException e1) { e1.printStackTrace(); } catch (BeansException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } } return optionValues; }
@RequestMapping(value = "list", method = RequestMethod.GET) public String list(ModelMap model) { try { model.addAttribute(REFRESHS, new ArrayList<String>(allRefresh().keySet())); return "manage/refresh"; } catch (BeansException e) { throw new SystemException(e.getMessage(), e); } }
/** * @param springCfgPath Spring configuration file path. * @return Grid configuration. * @throws Exception If failed. */ protected static IgniteConfiguration loadConfiguration(String springCfgPath) throws Exception { URL url; try { url = new URL(springCfgPath); } catch (MalformedURLException e) { url = IgniteUtils.resolveIgniteUrl(springCfgPath); if (url == null) throw new IgniteCheckedException( "Spring XML configuration path is invalid: " + springCfgPath + ". Note that this path should be either absolute or a relative local file system path, " + "relative to META-INF in classpath or valid URL to IGNITE_HOME.", e); } GenericApplicationContext springCtx; try { springCtx = new GenericApplicationContext(); new XmlBeanDefinitionReader(springCtx).loadBeanDefinitions(new UrlResource(url)); springCtx.refresh(); } catch (BeansException e) { throw new Exception( "Failed to instantiate Spring XML application context [springUrl=" + url + ", err=" + e.getMessage() + ']', e); } Map<String, IgniteConfiguration> cfgMap; try { cfgMap = springCtx.getBeansOfType(IgniteConfiguration.class); } catch (BeansException e) { throw new Exception( "Failed to instantiate bean [type=" + IgniteConfiguration.class + ", err=" + e.getMessage() + ']', e); } if (cfgMap == null || cfgMap.isEmpty()) throw new Exception("Failed to find ignite configuration in: " + url); return cfgMap.values().iterator().next(); }
public static void main(String[] args) { try { crawler(); } catch (BeansException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
@Test public void testInt2718FailForGatewayRequestChannelAttribute() { try { new ClassPathXmlApplicationContext( "HttpOutboundGatewayWithinChainTests-fail-context.xml", this.getClass()) .close(); fail("Expected BeanDefinitionParsingException"); } catch (BeansException e) { assertTrue(e instanceof BeanDefinitionParsingException); assertTrue(e.getMessage().contains("'request-channel' attribute isn't allowed for a nested")); } }
/** * Do pagina primera. * * @param mapping the mapping * @param actionForm the action form * @param request the request * @param response the response * @return the action forward * @throws Exception the exception */ public final ActionForward doPaginaPrimera( final ActionMapping mapping, final ActionForm actionForm, final HttpServletRequest request, final HttpServletResponse response) throws Exception { PseudoResponse res = new PseudoResponse(request, response); ReporteConciliacionForm form; String error = ""; int pagActual = Integer.parseInt(request.getParameter(PAG_ACTUAL)); final Boolean repBoletas = (request.getParameter(REP_BOLETAS) == null) ? false : Boolean.parseBoolean(request.getParameter(REP_BOLETAS)); if (actionForm instanceof ReporteConciliacionForm) { form = (ReporteConciliacionForm) actionForm; } else { form = new ReporteConciliacionForm(); } try { final ReporteConciliacionService service = (ReporteConciliacionService) getWebApplicationContext().getBean(REPORTE_CONCILIACION_SERVICE); if (form.getPaginacion() == null) { form = new ReporteConciliacionForm(); error = ConciliaErrorKeys.PPINV_ERR_CONCILIACION_CONSULTA_REPORTE.toString(); res.setResponseContent(jsonize(form)); } if ("".equals(error)) { form = service.consultaOperConciliacion(form, "paginaPrimera", pagActual, repBoletas); res.setResponseError(null); res.setResponseContent(jsonize(form)); } else { res.setResponseError(error); } } catch (FrontClientException e) { LOG.error(e.getMessage(), e); res.setResponseError(e.getMessage()); } catch (BeansException e) { LOG.error(e.getMessage(), e); res.setResponseError(GralErrorKeys.PPINV_ERR_GRAL.toString()); } finally { res.commit(); } return null; }
public static void main(String[] args) { try { ApplicationContext ctx = new ClassPathXmlApplicationContext("jlcindia19.xml"); logger.info("Inside main method Started Info"); System.out.println("---Spring container is now Ready---"); Hello hello = (Hello) ctx.getBean("hello"); hello.show(); int s = 19; logger.info("Inside main method Finished :" + s); } catch (BeansException e) { logger.error("Inside main method Started"); e.printStackTrace(); } }
/** * Gets Spring application context by given path. * * @param path Spring application context configuration path. * @return Spring application context. * @throws IgniteCheckedException If given path or xml-configuration at this path is invalid. */ private GenericApplicationContext getSpringContext(String path) throws IgniteCheckedException { try { GenericApplicationContext ctx = new GenericApplicationContext(); new XmlBeanDefinitionReader(ctx) .loadBeanDefinitions(new UrlResource(U.resolveIgniteUrl(path))); ctx.refresh(); return ctx; } catch (BeansException e) { throw new IgniteCheckedException( "Failed to instantiate Spring XML application context: " + e.getMessage(), e); } }
public String saveBranchMaster( String schoolID, String sname, String shortName, String address, String city, String country, String br_state, String br_cperson, String bemail, String br_mobile, String br_landline, String isactive) { BranchMasterDAO bMasterDao = null; try { bMasterDao = (BranchMasterDAO) ServiceFinder.getContext(request).getBean("BranchMasterHibernateDao"); BranchMaster br = new BranchMaster(); System.out.println(isactive + "--isactive"); isactive = isactive.equalsIgnoreCase("true") ? "Y" : "N"; br.setActive(isactive); br.setLandline(br_landline); br.setMobile(br_mobile); br.setStateId(Long.parseLong(br_state)); br.setImId((String) session.getAttribute("IM_ID")); br.setSmId(Long.parseLong(schoolID)); br.setBranchName(sname); br.setShortName(shortName); br.setAddress(address); br.setCity(city); br.setStateId(new Long(br_state)); br.setContactPerson(br_cperson); br.setEmailId(bemail); bMasterDao.save(br); return "saved"; } catch (BeansException e) { // TODO Auto-generated catch block e.printStackTrace(); return "error"; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); return "error"; } }
// bhanu public List getBranchMasterList(String schoolID) { BranchMasterDAO branchMasterDao = null; List instList = new ArrayList(); List branchList = new ArrayList(); try { String im_id = (String) session.getAttribute("IM_ID"); Long sm_id = Long.parseLong(schoolID); branchMasterDao = (BranchMasterDAO) ServiceFinder.getContext(request).getBean("BranchMasterHibernateDao"); if (sm_id == 0) { instList = branchMasterDao.findByPropertyList("imId", im_id); } else if (sm_id > 0) { instList = branchMasterDao.getBranchList("imId", im_id, "smId", sm_id); } System.out.println("in getInstitutionMasterList" + im_id); System.out.println("in dwr ut--" + instList.size()); for (int i = 0; i < instList.size(); i++) { String[] oioio = new String[2]; BranchMaster ioio = (BranchMaster) instList.get(i); System.out.println("--90---" + ioio.getBranchName()); oioio[0] = ioio.getBmId() + ""; oioio[1] = ioio.getBranchName(); branchList.add(oioio); } return branchList; } catch (BeansException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } }
public static void sparkFare(ApplicationContext applicationcontext) throws ParseException { try { CalcDependenciesService calcDependenciesService = applicationcontext.getBean("calcDependenciesService", CalcDependenciesService.class); HashMap calcDependencies = calcDependenciesService.getCalcDependencies(); Date deptDate = DateUtils.parseDate("2016-01-25", "yyyy-MM-dd"); Document doc = new Document(); Document flightInfo = new Document(); flightInfo.append("carrier", "MU"); flightInfo.append("flightNo", "5111"); flightInfo.append("oriEng", "SHA"); flightInfo.append("desEng", "PEK"); flightInfo.append("flightDt", deptDate); doc.append("flightInfo", flightInfo); doc.append("routetype", "OW"); doc.append("currency", "CNY"); doc.append("channel", new Double(38)); AtomicFareCalc.getInstance().fareCalc(doc, calcDependencies); } catch (BeansException e) { e.printStackTrace(); } }
@SuppressWarnings("rawtypes") public static void sparkFare(ApplicationContext applicationcontext) throws ParseException { try { CalcDependenciesService calcDependenciesService = applicationcontext.getBean("calcDependenciesService", CalcDependenciesService.class); HashMap calcDependencies = calcDependenciesService.getCalcDependencies(); Date deptDate = DateUtils.parseDate("2016-07-09", "yyyy-MM-dd"); Date depTime = DateUtils.parseDate("2016-07-09 20:50", "yyyy-MM-dd HH:mm"); Document doc = new Document(); doc.append("carrier", "FM"); doc.append("flightNo", "9136"); doc.append("oriEng", "BAV"); doc.append("desEng", "PVG"); doc.append("flightDt", deptDate); doc.append("depTime", depTime); doc.append("routetype", "OW"); doc.append("currency", "USD"); doc.append("channel", new Double(3)); AtomicFareCalc.getInstance().fareCalc(doc, calcDependencies); } catch (BeansException e) { e.printStackTrace(); } }
public static void main(String[] args) { ApplicationContext context = null; UserDetails userDetails = new UserDetails(); try { // Initialize spring application context... context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml"); // Get the UserService instance from bean factory.. UserManager userManager = (UserManager) context.getBean("userManager"); // Create a dummy user instance.. userDetails.setFirstname("Abhi"); userDetails.setLastname("T"); userDetails.setEmail("*****@*****.**"); userDetails.setTelephone("9972048321"); // Create User.. userManager.addUser(userDetails); // Find User by ID.. userDetails = null; userDetails = userManager.findByUserId(1); userDetails = userManager.findByUserId(1); System.out.println("User :"******"*****@*****.**"); userDetails = userManager.findByUserEmailId("*****@*****.**"); System.out.println( "Result :" + ((userDetails != null) ? userDetails.getFirstname() : "No Users Found")); } catch (BeansException e) { e.printStackTrace(); } finally { ((ClassPathXmlApplicationContext) context).close(); } }
/** * doUpdate * * @param nodeId a int. * @param retry a boolean. * @throws org.opennms.netmgt.provision.ProvisioningAdapterException if any. */ @Override public void doUpdateNode(final int nodeId) throws ProvisioningAdapterException { log().debug("doUpdate: updating nodeid: " + nodeId); final OnmsNode node = m_nodeDao.get(nodeId); Assert.notNull(node, "doUpdate: failed to return node for given nodeId:" + nodeId); final InetAddress ipaddress = m_template.execute( new TransactionCallback<InetAddress>() { public InetAddress doInTransaction(final TransactionStatus arg0) { return getIpForNode(node); } }); final SnmpAgentConfig agentConfig = m_snmpConfigDao.getAgentConfig(ipaddress); final OnmsAssetRecord asset = node.getAssetRecord(); m_config.getReadLock().lock(); try { for (AssetField field : m_config.getAssetFieldsForAddress(ipaddress, node.getSysObjectId())) { try { String value = fetchSnmpAssetString(agentConfig, field.getMibObjs(), field.getFormatString()); if (log().isDebugEnabled()) { log() .debug( "doUpdate: Setting asset field \"" + field.getName() + "\" to value: " + value); } // Use Spring bean-accessor classes to set the field value BeanWrapper wrapper = PropertyAccessorFactory.forBeanPropertyAccess(asset); try { wrapper.setPropertyValue(field.getName(), value); } catch (BeansException e) { log() .warn( "doUpdate: Could not set property \"" + field.getName() + "\" on asset object: " + e.getMessage(), e); } } catch (MissingFormatArgumentException e) { // This exception is thrown if the SNMP operation fails or an incorrect number of // parameters is returned by the agent or because of a misconfiguration. log() .warn( "doUpdate: Could not set value for asset field \"" + field.getName() + "\": " + e.getMessage(), e); } } } finally { m_config.getReadLock().unlock(); } node.setAssetRecord(asset); m_nodeDao.saveOrUpdate(node); m_nodeDao.flush(); }
/* * (non-Javadoc) * * @see org.jpos.q2.QBeanSupport#startService() */ public void startService() { ApplicationContext dependencyCtx = null; if ((null != springCtxDepRegistrationKey) && (springCtxDepRegistrationKey.trim().length() > 0)) { try { log.debug( String.format( "Spring Q2MBean '%s' : search for Spring context dependency '%s' in NameRegistrar", getName(), springCtxDepRegistrationKey)); Object object = NameRegistrar.get(springCtxDepRegistrationKey); if (object instanceof Spring) { dependencyCtx = ((Spring) object).getContext(); } else if (object instanceof ApplicationContext) { dependencyCtx = ((ApplicationContext) object); } else { String errMsg = String.format( "Spring Q2MBean '%s' : spring context dependency '%s' found in NameRegistrar but is not a Spring ApplicaitonContext, neither a Spring QBean", getName(), springCtxDepRegistrationKey); log.error(errMsg); throw new RuntimeException(errMsg); } log.debug( String.format( "Spring Q2MBean '%s' : Spring context dependency '%s' found in NameRegistrar", getName(), springCtxDepRegistrationKey)); } catch (NotFoundException e) { if (!this.springCtxDepOptional) { log.error( String.format( "Spring Q2MBean '%s' : spring context dependency '%s' not found in NameRegistrar", getName(), springCtxDepRegistrationKey)); throw new RuntimeException(e); } else { log.info( String.format( "Spring Q2MBean '%s' : optional spring context dependency '%s' not found in NameRegistrar", getName(), springCtxDepRegistrationKey)); } } } try { if (null == dependencyCtx) { context = new FileSystemXmlApplicationContext(configFiles); } else { context = new FileSystemXmlApplicationContext(configFiles, dependencyCtx); } log.info(String.format("Spring Q2MBean '%s' : spring context has been loaded", getName())); } catch (BeansException e) { log.error( String.format( "Spring Q2MBean '%s' : an error occured while loading this spring context. Error message = %s", getName(), e.getMessage())); throw e; } NameRegistrar.register(getName(), this); }
// bhanu public List getMultiBranchMasterList(String[] schoolID) { BranchMasterDAO branchMasterDao = null; List instList = new ArrayList(); List branchList = new ArrayList(); try { StringBuffer inString = new StringBuffer(); // in('2','3') for (int i = 0; i < schoolID.length; i++) { if (schoolID[i].equalsIgnoreCase("0")) { inString = new StringBuffer("0"); break; } inString.append(schoolID[i]); if (i < schoolID.length - 1) inString.append(","); } // System.out.println("inString**********"+inString); String inQuery = inString + ""; String im_id = (String) session.getAttribute("IM_ID"); Long sm_id = Long.parseLong(schoolID[0]); branchMasterDao = (BranchMasterDAO) ServiceFinder.getContext(request).getBean("BranchMasterHibernateDao"); if (inQuery.equalsIgnoreCase("0")) { instList = branchMasterDao.findByPropertyList("imId", im_id); for (int i = 0; i < instList.size(); i++) { String[] oioio = new String[2]; BranchMaster ioio = (BranchMaster) instList.get(i); System.out.println("--90---" + ioio.getBranchName()); oioio[0] = ioio.getBmId() + ""; oioio[1] = ioio.getBranchName(); System.out.println(oioio[0] + "*************" + oioio[1]); branchList.add(oioio); } } else { instList = branchMasterDao.getMultiBranchList(im_id, inQuery); for (int i = 0; i < instList.size(); i++) { String[] oioio = new String[2]; System.out.println(instList.size() + "^^^^^^^^^^^^^"); Object[] uu = (Object[]) instList.get(i); oioio[0] = (String) uu[0]; oioio[1] = (String) uu[1]; System.out.println(instList.size() + "@@" + oioio[0] + "**" + oioio[1]); branchList.add(oioio); } } // System.out.println("in getInstitutionMasterList"+im_id); // System.out.println("in dwr ut--"+instList.size()); return branchList; } catch (BeansException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } }
/** * See <a href="http://e-docs.bea.com/wls/docs100/javadocs/weblogic/common/T3StartupDef.html"> * http://e-docs.bea.com/wls/docs100/javadocs/weblogic/common/T3StartupDef.html</a> for more * information. * * @param str Virtual name by which the class is registered as a {@code startupClass} in the * {@code config.xml} file * @param params A hashtable that is made up of the name-value pairs supplied from the {@code * startupArgs} property * @return Result string (log message). * @throws Exception Thrown if error occurred. */ @SuppressWarnings({"unchecked", "CatchGenericClass"}) @Override public String startup(String str, Hashtable params) throws Exception { GridLogger log = new GridJavaLogger(LoggingHelper.getServerLogger()); cfgFile = (String) params.get(cfgFilePathParam); if (cfgFile == null) { throw new IllegalArgumentException("Failed to read property: " + cfgFilePathParam); } String workMgrName = (String) params.get(workMgrParam); URL cfgUrl = U.resolveGridGainUrl(cfgFile); if (cfgUrl == null) throw new ServerLifecycleException( "Failed to find Spring configuration file (path provided should be " + "either absolute, relative to GRIDGAIN_HOME, or relative to META-INF folder): " + cfgFile); GenericApplicationContext springCtx; try { springCtx = new GenericApplicationContext(); XmlBeanDefinitionReader xmlReader = new XmlBeanDefinitionReader(springCtx); xmlReader.loadBeanDefinitions(new UrlResource(cfgUrl)); springCtx.refresh(); } catch (BeansException e) { throw new ServerLifecycleException( "Failed to instantiate Spring XML application context: " + e.getMessage(), e); } Map cfgMap; try { // Note: Spring is not generics-friendly. cfgMap = springCtx.getBeansOfType(GridConfiguration.class); } catch (BeansException e) { throw new ServerLifecycleException( "Failed to instantiate bean [type=" + GridConfiguration.class + ", err=" + e.getMessage() + ']', e); } if (cfgMap == null) throw new ServerLifecycleException( "Failed to find a single grid factory configuration in: " + cfgUrl); if (cfgMap.isEmpty()) throw new ServerLifecycleException("Can't find grid factory configuration in: " + cfgUrl); try { ExecutorService execSvc = null; MBeanServer mbeanSrv = null; for (GridConfiguration cfg : (Collection<GridConfiguration>) cfgMap.values()) { assert cfg != null; GridConfigurationAdapter adapter = new GridConfigurationAdapter(cfg); // Set logger. if (cfg.getGridLogger() == null) adapter.setGridLogger(log); if (cfg.getExecutorService() == null) { if (execSvc == null) execSvc = workMgrName != null ? new GridThreadWorkManagerExecutor(workMgrName) : new GridThreadWorkManagerExecutor(J2EEWorkManager.getDefault()); adapter.setExecutorService(execSvc); } if (cfg.getMBeanServer() == null) { if (mbeanSrv == null) { InitialContext ctx = null; try { ctx = new InitialContext(); mbeanSrv = (MBeanServer) ctx.lookup("java:comp/jmx/runtime"); } catch (Exception e) { throw new IllegalArgumentException( "MBean server was not provided and failed to obtain " + "Weblogic MBean server.", e); } finally { if (ctx != null) ctx.close(); } } adapter.setMBeanServer(mbeanSrv); } Grid grid = G.start(adapter, springCtx); // Test if grid is not null - started properly. if (grid != null) gridNames.add(grid.name()); } return getClass().getSimpleName() + " started successfully."; } catch (GridException e) { // Stop started grids only. for (String name : gridNames) G.stop(name, true); throw new ServerLifecycleException("Failed to start GridGain.", e); } }