NoClassDefFoundError ConverterELTag

Using 11.1.1.6 JDeveloper and Weblogic 10.3.

I'm trying to deploy an application to a ManagedServer that ADF libraries installed.

When I try to deploy directly from JDeveloper, either by creating the. EAR file and manual deployment, the deployment fails with the following error:

weblogic.application.ModuleException: cannot load the webapp: "hrWebApp."

Caused by: java.lang.NoClassDefFoundError: javax/faces/webapp/ConverterELTag

Any suggestions would be helpful.

Hello

According to Doc ID 1388768.1, this error can also occur if your project model is also reference libraries of the ADF in the classpath. Could check you if you have a reference to these libraries in your template project?

Best regards, Nicolas

Tags: Fusion Middleware

Similar Questions

  • NoClassDefFoundError on 9550

    Hello

    I have a program that seems to work on all the touch screen trackball and devices except for the Storm 9550. I get the error when I test on the 9550 Simulator and the device. The version of the Simulator is 5.0.0.252, and I do not know what version still uses the customer.

    Is the error I get when I try to run the program ' Eception 104 JVM error: NoClassDefFoundError.» It is not supposed me why this error occur only on some devices and not all. Sounds to me as if it was a bug in the operating system software.

    Any ideas on what I can do to work around the problem?

    Scott

    Check that you do not use a api that has been deleted in 5.0.  TextField comes to mind.  Although there are always, its constructor has been deleted all calling code 'new TextField (...)' will trigger NoClassDefFoundError.

  • Advertising service - NoClassDefFoundError

    Hi all

    Can someone help me traceout the issue related to the advertising department. When I integrate OS6.0 compatable .jar (ads of BB SDK service) file and get the banners, my request to launch 'NoClassDefFoundError '. Here I use zonal trail ID: 31848, 9810 device as Simulator 9900 in Testing. In both cases, I get the same error.

    Can you me say please I use correct zonalID?, I have to build the application using jre6.0 and jre 7.0 as well, but in both cases, I get the same error. I think, I'm using compatible software. but do not know why his mistake throw like that.

    Please suggest me to do this.

    NP .

    Please mark this thread as closed.

    Thank you

    E.

  • NoClassDefFoundError exception (only happen on OS5, OS6)

    I get an exception NoClassDefFoundError every time I try to run my application on OS5.  It only happens when I am referring to a specific class (which extends from screen and stores a persistent object too).

    Has anyone met a NoClassDefFoundError before?

    There is no error in compilation, and this happens ONLY when the OS5 run attempt, however will not happen when running in the OS6.

    I always have interesting problems

    The solution to your problem, you can find in the second post in this topic

    http://supportforums.BlackBerry.com/T5/testing-and-deployment/in-Simulator-8530-everything-works-fin...

    There is a link to a tutorial on how to install an old JRE in eclipse.

    You will need to change then, under properties-> libraries

    I hope this could help you.

  • NoClassDefFoundError with BB OS5

    I have my application class, and I also need another class, a class GPSFinder for helping me find the location of the mobile.

    In the class that extends the screen, I declare a variable:

    GPSFinder gpsF;
    

    and then using that variable throughout my application. It works fine when I test on a real device with BB OS6 or a simulator.

    However, on devices with OS5. I get this error:

    Eception exception: java.lang.NoClassDefFoundError

    This error is generated when I reach the line of the above-mentioned declaration. It's like the device running os5 that cannot find the definition of the GPSFinder class.

    The class application and GPSFinder are under a common set.

    (I even tried importing the other GPSFinder, although this should be done by default in packages, but that didn't work either.)

    I hope someone can help with this problem.

    Thank you

    You've built your application under OS 6.0 so it will work on phones OS 6.0 +.

    Read the knowledge base article to find out what to do:

    Appropriate version of the JDE BlackBerry and BlackBerry Java SDK

  • org.json.me.JSONObject NoClassDefFoundError

    Hello people,

    I use os 5 and you want to parse the string in json format, but if I use the JSONObject jsonObj = new JSONObject(); I can not create object because there is NoClassDefFoundError exception. I can't understand what the problem is. I have json.lib. I also tried with org.json.me source code, but the result is the same.

    Anyone have this problem? Any suggestions? Thanks for the replies

    I solved it. Problem was the compiler level. My was set at 1.5. I changed it to 1.3 and it works. Thanks for the help and suggestions

  • NoClassDefFoundError

    I have an application that generates correctly, but gives a NoClassDefFoundError at runtime. I use Eclipse 3.5.2 with the following Blackberry SDK plugins:

    BlackBerry Java plug-in 1.1.2.201004161203 - 16 net.rim.EclipseJDE.feature.group
    BlackBerry Java SDK 5.0.0.25 net.rim.ejde.feature.componentpack5.0.0.feature.group
    BlackBerry Java SDK 4.7.0.53 net.rim.ejde.feature.componentpack4.7.0.feature.group
    BlackBerry Java SDK 4.6.1.36 net.rim.ejde.feature.componentpack4.6.1.feature.group
    BlackBerry Java SDK 4.6.0.21 net.rim.ejde.feature.componentpack4.6.0.feature.group
    BlackBerry Java SDK 4.5.0.21 net.rim.ejde.feature.componentpack4.5.0.feature.group

    NoClassDefFoundError is usually the result of a missing JAR, but in this case, I try to instantiate a class from my application JAR. In fact, the class in question is an inner class from another class that I already instantiated. Here is a fragment of the inner class:

    public class StructArrayFirst {    // Class implementation snipped...
    
        public static class Marshaller implements Marshal {
            private final String namespace;
            private final String name;
            private SoapSerializationEnvelope envelope;
    
            public Marshaller(String namespace, String name) {
                this.namespace = namespace;
                this.name = name;
            }
    
            public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo expected)
                    throws IOException, XmlPullParserException {
                String exitOnTag = parser.getName();
                if (!exitOnTag.equals(name)) {
                    throw new RuntimeException("Invalid tag. Expecting " + name + " got " + exitOnTag);
                }
    
                parser.nextTag();
    
                // Comment out this line and NoClassDefFoundError goes away.
                Object instance = readReturnInstance(parser);
    
                parser.require(XmlPullParser.END_TAG, null, name);
                return instance;
            }
    
            private Object readReturnInstance(XmlPullParser parser) throws XmlPullParserException, IOException {
                // Function body snipped...
            }
    

    I have the instantiate like this:

        public Marshal getMarshaller() {
            return new StructArrayFirst.Marshaller("", mTag);
        }
    

    The code as shown gives a NoClassDefFoundError when I try to make the instantiation. If I comment out the call to readReturnInstance, the problem goes away:

                // Comment out this line and NoClassDefFoundError goes away.
                //Object instance = readReturnInstance(parser);
    

    I'm puzzled as to why the presence of this line of code would result in a NoClassDefFoundError. Perhaps miss something elsewhere. Thanks for any light you might be able to do on that.

    -rich

    Found the problem. There was a code (not shown above) that attempted to access the class of primitive types (for example, int.class). It works in some Java environments (the code in question came originally from an Android project). BlackBerry obviously can't get an object of class for primitive types, but the compiler don't is not complaint. As long as the function that contains the offending code is never called, the class can be instantiated at run time. Perhaps packer is smart enough to omit unused functions. This caused some confusion since commenting the line mentioned above does not really solve the problem, but it causes the offending function not called. Would be nice if the compiler is complaining about this.

  • NoClassDefFoundError with Bouncy Castle Library

    Hello

    I build and preverified Bouncy Castle bccore and bcpkix libraries and included in a BlackBerry project in Eclipse using the 7.1.0 plugin SDK BlackBerry.

    When you try to instantiate the CMSSignedData class I see a NoClassDefFoundError exception throw.  The exception returns nothing of getMessage() and printStackTrace() shows simply "no trace of the stack.

    Any ideas?

    Thank you.

    The problem is now resolved.  When there is a problem with the help of the Bouncy Castle code (even with it included directly in the source code in my test application) attached to the BB JDE 7.1.0.  Rebuild the project against the BB JDE 7.0.0 solves the problem.

  • Java.lang.NoClassDefFoundError blackBerry Smartphones

    I have a Bold 9900 using 7.1.0.714 platform 5.1.0.532.

    Facebook does not work because instead, I get an untrapped exception: java.lang.NoClassDefFoundError.

    I need help to solve this problem please

    Hello and welcome to the community!

    There is virtually no diagnosis of those - they are the equivalent of random errors in Windows for which trace the root cause is futile. Basically, here's the last out in the programming code - some event occurred for which there is no event handler in the code. The patch is an update of the code that handles the event... but, again, what is the event is almost impossible. So, there are a few things to try:

    Sometimes, the code simply is damaged and needs to be updated - just like a reboot:

    • Each time a random strange behavior or slow creeps, the first thing to do is a battery pop reboot. With power ON, remove the hood back and remove the battery. Wait a minute, then replace the battery and cover. Power on and wait patiently through the long reboot - about 5 minutes. See if things return to functioning. Like all computing devices, BB suffers from memory leaks and others... with a hard reboot is the best remedy.

    If it doesn't boot properly, then you need to try Safe Mode:

    • KB17877 How to start a BlackBerry smartphone in safe mode

    There may be a code updated to the value of the carrier - check out them through this Portal:

    The toughest possible causes are a bad application behave. To find it, there are two options. Is to see if you can read the log file:

    Go to the home screen. Hold down the "alt" key and type "lglg". (You won't see anything as you type). This will bring up the log file. Scroll down (probably a lot of pages) until you see a line that says "eception execption. Click on this line. The application name will be in the info. Alternative methods to implement the newspapers are in this KB:

    • KB05349 How to activate, view, and extract the the event logs on a BlackBerry smartphone

    The other method is to remove the apps one at a time, wait a while between the two (I usually recommend a week), until the problem stops... revealing the offending application. Yet another method is to recharge the BB OS itself, leaving little time between the addition of other applications on the BB in order to be able to determine exactly what is the cause.

    Good luck and let us know!

  • NoClassDefFoundError when configuring a profile of Middleware

    Hello

    I'm provisioning a profile from the OEM console Middleware and the task to keep fail with the NoClassDefFoundError below. I searched the class in the file/tmp/fmwProvDest (see at the end), but this class is not in one of the jar.

    Anyone has an idea about this?

    Name of the control: check the Env Variable

    Description of the audit: check LD_ASSUME_KERNEL

    java.lang.NoClassDefFoundError: oracle/as/install/engine/analyzers/exception/ParseException

    at java.lang.Class.getDeclaredMethods0 (Native Method)

    at java.lang.Class.privateGetDeclaredMethods(Class.java:2615)

    at java.lang.Class.getDeclaredMethod(Class.java:2007)

    at oracle.sysman.oip.oipc.oipcr.OipcrRulesEngine.executeRule(OipcrRulesEngine.java:231)

    at oracle.sysman.oip.oipc.oipcp.OipcpPrereqChecker.executeCheck(OipcpPrereqChecker.java:581)

    at oracle.sysman.oip.oipc.oipcp.OipcpPrereqChecker.runChecks(OipcpPrereqChecker.java:536)

    at oracle.sysman.oip.oipc.oipcp.OipcpPrereqChecker.executePrereqs(OipcpPrereqChecker.java:437)

    at oracle.sysman.fmw.provisioning.prereq.impl.PrereqChecker.executePrereqs(PrereqChecker.java:119)

    at oracle.sysman.fmw.provisioning.prereq.exec.ExecutePrereqs.runPreReqCheck(ExecutePrereqs.java:85)

    at oracle.sysman.fmw.provisioning.prereq.FmwPrereqLauncher.executeSysPrereqs(FmwPrereqLauncher.java:61)

    at oracle.sysman.fmw.provisioning.prereq.FmwPrereqLauncher.main(FmwPrereqLauncher.java:77)

    Caused by: java.lang.ClassNotFoundException: oracle.as.install.engine.parsers.exception.ParseException

    at oracle.sysman.oii.oiix.OiixJarClassLoader.loadClass(OiixJarClassLoader.java:674)

    at oracle.sysman.oii.oiix.OiixJarClassLoader.loadClass(OiixJarClassLoader.java:731)

    ... 11 more

    Real result string: null

    Wait for the resulting string: null

    Result: 3

    ResultText: Unaccomplished < < < <

    result of grep on jar files

    [xxx@yyy jlib] $ file in ' find. -name "* .jar" '; jar FST ${file} | grep ParseException; fact

    1483 Mon May 14 16:25:34 CEST 2007 org/xml/sax/SAXParseException.class

    2253 Fri Aug 22 04:54:18 CEST 2008 oracle/xml/parser/v2/XMLParseException.class

    177 kills Jan 03 18:59:10 GMT 2006 oracle/help/common/xml/XMLParseException.class

    186 kills Jan 03 18:59:10 GMT 2006 oracle/help/library/helpset/HelpSetParseException.class

    1483 kills Dec 23 12:53:38 GMT 2003 org/xml/sax/SAXParseException.class

    2253 Sun Feb 03 10:41:18 GMT 2008 oracle/xml/parser/v2/XMLParseException.class

    431 sun Sep 26 19:18 CEST 2004 HTTPClient/ParseException.class

    431 Fri 12 August 23:56:22 UTC 2005 HTTPClient/ParseException.class

    It is documented in: Doc ID 1929766.1

  • java.lang.NoClassDefFoundError

    Hello

    To call my report jasper Server Jasper, I wrote the Jdev 12.2.1 java code using the REST web service. but during the race, I get this error.

    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/http/util/Args

    to org.apache.http.auth.UsernamePasswordCredentials. < init > (UsernamePasswordCredentials.java:78)

    at com.uravatech.jasper.Jasper.main(Jasper.java:30)

    Caused by: java.lang.ClassNotFoundException: org.apache.http.util.Args

    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)

    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:331)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

    ... 2 more

    Process has finished with exit code 1. "

    And the code I used is

    public class {Jasper

    Public Shared Sub main (String [] args) throws Exception

    CredentialsProvider credsProvider = new BasicCredentialsProvider();

    HttpHost targetHost = new HttpHost ("192.168.2.201", 8081, "http");

    credsProvider.setCredentials (new AuthScope (targetHost)

    new UsernamePasswordCredentials ("jasperadmin", "jasperadmin"));

    HttpClient CloseableHttpClient = HttpClients.custom)

    .setDefaultCredentialsProvider (credsProvider) infrastructure ();

    try {}

    HttpGet httpget = new HttpGet ("http://192.168.2.201:8081/jasperserver[-pro]/rest_v2/reports/reports/CrossTab/Accounts.pdf");

    System.out.println ("the execution of the request" + httpget.getRequestLine ());

    CloseableHttpResponse response = httpclient.execute (httpget);

    System.out.println (Response.getStatusLine ());

    } {Finally

    HttpClient. Close();

    }

    }

    }

    And I added these jars

    Commons-beanutils - 1.9.2

    Commons-collections - 3.2.2

    Commons-digester - 2.1

    Commons-logging - 1.2

    Groovy-all - 2.4.5

    HttpClient - 4.3.4

    HttpComponents-client - 4.5.1 - src.tar

    httpcore - 4.0 - beta3

    iText - 2.1.7.js3

    JasperReports - 6.2.0

    JRS-Rest-Java-client-6.2.0-jar-with-Dependencies

    jrwebservice_0

    restapicodesample

    Repairman-Java-Client-ApacheHttpClient-Example

    Help me to solve this error.

    Kind regards

    Nikhil

    The user, the file you downloaded is a zip package containing the whole package. You need to decompress in a folder on your pc and include all the jars in the lib of the unzipped folder folder.

    Timo

  • WLS 12.1.3 java.lang.NoClassDefFoundError: oracle, dms, console, DMSConsole

    Hello

    I have a maven based application created using oracle WebLogic Maven Plugin. Application uses UCP and I connect the UCP connection details in the application.  Your application is deployed in wls 12.1.3 (JDK jdk1.8.0_45) and it gives java.lang.NoClassDefFoundError: oracle/dms/console/DMSConsole when you access.

    I have dms.jar in dependence of maven pom (manually added to the repo local mvn) and I checked that dms.jar is present in WEB-INF\lib war of the application and dms.jar contains the DMSConsole class under oracle/dms/console folder file.  I use Spring beans to initialize the logging of the UCP. This application works in Tomcat 7.5. There is error in wls 12.1.3 and 12.1.1. Please advice on how to debug / fix...

    bean for logging

    < bean id = "conpoolmgr".

    Class = "Oracle.UCP.admin.UniversalConnectionPoolManagerImpl"

    factory method = "getUniversalConnectionPoolManager".

    p:LogLevel = "FINEST" / >

    Newspapers:

    [ServletContext@131823626[app:basicWebapp module: basicWebapp.war path specification: null-version: 3.0], request: [weblogic.servlet.internal.ServletRequestImpl@6ba61b7a

    GET /basicWebapp/welcome.html HTTP/1.1

    User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; RV:37.0) Gecko/20100101 Firefox/37.0

    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

    Accept-Language: en-US, en; q = 0.5

    Accept-Encoding: gzip, deflate

    Referer: http://xxx.xxx.xxx.xxx:7001 / basicWebapp /

    Connection: keep-alive

    Root cause]] of ServletException.

    java.lang.NoClassDefFoundError: oracle, dms, console, DMSConsole

    at java.lang.Class.getDeclaredMethods0 (Native Method)

    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)

    at java.lang.Class.getDeclaredMethods(Class.java:1975)

    at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:571)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:488)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:501)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:474)

    at org.springframework.util.ReflectionUtils.getUniqueDeclaredMethods(ReflectionUtils.java:534)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getTypeForFactoryMethod(AbstractAutowireCapableBeanFactory.java:677)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineTargetType(AbstractAutowireCapableBeanFactory.java:621)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:591)

    at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1397)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:434)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:404)

    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:82)

    at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:606)

    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:462)

    to org.springframework.context.support.ClassPathXmlApplicationContext. < init > (ClassPathXmlApplicationContext.java:139)

    to org.springframework.context.support.ClassPathXmlApplicationContext. < init > (ClassPathXmlApplicationContext.java:83)

    at com.test.springapp.HelloWorld.helloWorld(HelloWorld.java:32)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:177)

    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:446)

    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:434)

    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)

    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)

    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:966)

    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:857)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)

    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:842)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3436)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3402)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:255)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    Caused by: java.lang.ClassNotFoundException: oracle.dms.console.DMSConsole

    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)

    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:331)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

    at java.lang.Class.getDeclaredMethods0 (Native Method)

    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)

    at java.lang.Class.getDeclaredMethods(Class.java:1975)

    at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:571)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:488)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:501)

    at org.springframework.util.ReflectionUtils.doWithMethods(ReflectionUtils.java:474)

    at org.springframework.util.ReflectionUtils.getUniqueDeclaredMethods(ReflectionUtils.java:534)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getTypeForFactoryMethod(AbstractAutowireCapableBeanFactory.java:677)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineTargetType(AbstractAutowireCapableBeanFactory.java:621)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:591)

    at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1397)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBeanNamesForType(DefaultListableBeanFactory.java:434)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType(DefaultListableBeanFactory.java:404)

    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:82)

    at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:606)

    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:462)

    to org.springframework.context.support.ClassPathXmlApplicationContext. < init > (ClassPathXmlApplicationContext.java:139)

    to org.springframework.context.support.ClassPathXmlApplicationContext. < init > (ClassPathXmlApplicationContext.java:83)

    at com.test.springapp.HelloWorld.helloWorld(HelloWorld.java:32)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:177)

    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:446)

    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:434)

    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)

    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)

    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:966)

    at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:857)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)

    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:842)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3436)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3402)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:255)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

    Thank you

    Sandeep

    Checked the Classloading WebLogic using CAT ' (wls-chat app) and found oracle.dms.console.DMSConsole was responsible for jar web - inf and ucp classes have been responsible for weblogic jar, used under entry in weblogic.xml to load all of the web - inf to solve the problem

    true

    Thank you

    Sandeep

  • NoClassDefFoundError: Sun, beans, publishers, StringEditor

    Hello

    I'm on Macbook pro Yosemite 10.10.2

    JDeveloper 12.1.3 Build JDEVADF_12.1.3.0.0_GENERIC_140521.1008.S

    MAF 2.1.0.0.41.150115.1352

    When you create the MAF (Application-> New-> Mobile Application Framework) application I get the following error.

    , I'm guessing that it is related to the jdk or versioning issues. OpenJDK v7-b147 is displayed in google search as the Java JDK that has the class StringEditor in it.  (and apparently it's located in the JDK, see ) http://code.Google.com/p/OpenJDK-OSX-build/ )

    For what is the JDK support with this version of the MAF, and on a mac and w / jdev can I

    more than a JDK at a time - I say this because of the configuration of the JDK w / the

    /System/Library/frameworks/JavaVM.Framework/versions/ pointing to CurrentVersion


    (Or if it's something else, please let me know).

    Thank you!

    Joel

    Call to order: initialize the contents of the file [for (MAF - feature.xml, < none >, < any >)]

    Uncaught exception

    java.lang.NoClassDefFoundError: Sun, beans, publishers, StringEditor

    o.adfmf.framework.dt.editor.ComboBoxEditor. < init > (ComboBoxEditor.java:35)

    o.adfmf.framework.dt.editor.ConnectionAttributePropertyEditor. < init > (ConnectionAttributePropertyEditor.java:48)

    o.adfmf.framework.dt.editor.UrlConnAttrPropertyEditor. < init > (UrlConnAttrPropertyEditor.java:17)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel$ 3. < init > (EditorFeaturePanel.java:263)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel._addContentSubtab(EditorFeaturePanel.java:262)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel.createXmlComponentsImpl(EditorFeaturePanel.java:126)

    o.bali.xml.gui.jdev.xmlComponent.AbstractXmlPanelWrapper.createXmlComponents(AbstractXmlPanelWrapper.java:53)

    o.bali.xml.gui.jdev.overviewEditor.OverviewEditorPanel. < init > (OverviewEditorPanel.java:57)

    o.bali.xml.gui.jdev.overviewEditor.AbstractOverviewEditorXmlGui.getComponent(AbstractOverviewEditorXmlGui.java:64)

    o.bali.xml.gui.jdev.StandardAsynchronousXmlVisualEditor.handleXmlContextChange(StandardAsynchronousXmlVisualEditor.java:99)

    o.bali.xml.gui.jdev.AbstractAsynchronousXmlVisualEditor.doSetContext(AbstractAsynchronousXmlVisualEditor.java:288)

    o.i.editor.AsynchronousEditor.updateContextImpl(AsynchronousEditor.java:417)

    o.i.editor.AsynchronousEditor.setDelayedContext(AsynchronousEditor.java:403)

    o.i.editor.AsynchronousEditor$ $2 1.run(AsynchronousEditor.java:355)

    o.bali.ewt.util.PaintUtils.invokeAfterRepaint(PaintUtils.java:53)

    o.javatools.util.SwingUtils.invokeAfterRepaint(SwingUtils.java:563)

    o.i.editor.AsynchronousEditor$ 6.run(AsynchronousEditor.java:586)

    j.a.event.InvocationEvent.dispatch(InvocationEvent.java:311)

    j.a.EventQueue.dispatchEventImpl(EventQueue.java:749)

    j.a.EventQueue.access$ 500 (EventQueue.java:97)

    j.a.EventQueue$ 3.run(EventQueue.java:702)

    j.a.EventQueue$ 3.run(EventQueue.java:696)

    j.security.AccessController.doPrivileged (Native Method)

    j.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:75)

    j.a.EventQueue.dispatchEvent(EventQueue.java:719)

    o.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)

    o.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)

    j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)

    j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)

    j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)

    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)

    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)

    j.a.EventDispatchThread.run(EventDispatchThread.java:82)

    Caused by:

    java.lang.ClassNotFoundException: sun.beans.editors.StringEditor

    org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:501)

    org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421)

    org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412)

    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)

    org.netbeans.modules.netbinox.NetbinoxLoader.loadClass(NetbinoxLoader.java:97)

    j.lang.ClassLoader.loadClass(ClassLoader.java:357)

    o.adfmf.framework.dt.editor.ComboBoxEditor. < init > (ComboBoxEditor.java:35)

    o.adfmf.framework.dt.editor.ConnectionAttributePropertyEditor. < init > (ConnectionAttributePropertyEditor.java:48)

    o.adfmf.framework.dt.editor.UrlConnAttrPropertyEditor. < init > (UrlConnAttrPropertyEditor.java:17)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel$ 3. < init > (EditorFeaturePanel.java:263)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel._addContentSubtab(EditorFeaturePanel.java:262)

    o.adfmf.framework.dt.editor.feature.EditorFeaturePanel.createXmlComponentsImpl(EditorFeaturePanel.java:126)

    o.bali.xml.gui.jdev.xmlComponent.AbstractXmlPanelWrapper.createXmlComponents(AbstractXmlPanelWrapper.java:53)

    o.bali.xml.gui.jdev.overviewEditor.OverviewEditorPanel. < init > (OverviewEditorPanel.java:57)

    o.bali.xml.gui.jdev.overviewEditor.AbstractOverviewEditorXmlGui.getComponent(AbstractOverviewEditorXmlGui.java:64)

    o.bali.xml.gui.jdev.StandardAsynchronousXmlVisualEditor.handleXmlContextChange(StandardAsynchronousXmlVisualEditor.java:99)

    o.bali.xml.gui.jdev.AbstractAsynchronousXmlVisualEditor.doSetContext(AbstractAsynchronousXmlVisualEditor.java:288)

    o.i.editor.AsynchronousEditor.updateContextImpl(AsynchronousEditor.java:417)

    o.i.editor.AsynchronousEditor.setDelayedContext(AsynchronousEditor.java:403)

    o.i.editor.AsynchronousEditor$ $2 1.run(AsynchronousEditor.java:355)

    o.bali.ewt.util.PaintUtils.invokeAfterRepaint(PaintUtils.java:53)

    o.javatools.util.SwingUtils.invokeAfterRepaint(SwingUtils.java:563)

    o.i.editor.AsynchronousEditor$ 6.run(AsynchronousEditor.java:586)

    j.a.event.InvocationEvent.dispatch(InvocationEvent.java:311)

    j.a.EventQueue.dispatchEventImpl(EventQueue.java:749)

    j.a.EventQueue.access$ 500 (EventQueue.java:97)

    j.a.EventQueue$ 3.run(EventQueue.java:702)

    j.a.EventQueue$ 3.run(EventQueue.java:696)

    j.security.AccessController.doPrivileged (Native Method)

    j.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:75)

    j.a.EventQueue.dispatchEvent(EventQueue.java:719)

    o.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)

    o.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)

    j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)

    j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)

    j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)

    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)

    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)

    j.a.EventDispatchThread.run(EventDispatchThread.java:82)

    You need JDK 1.7 to run JDeveloper and JDK1.8 for the extension of the MAF.

    So the way forward on this issue is to have both installed on your mac.

    Then start the JDev 12.1.3 Installer by using the JDK1.7 java-jar installer.jar

    Then install the extension of the MAF.

    Then when you start JDev and create a CRG app you will be asked to point to the location of the JDK 1.8

  • oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError

    Hi all

    I have deployed the class files compiled the server getting the error JAVA_TOP, below, it happens in one of the instance of the client.

    "oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError".

    What is the Cause for this? Any library is missing in java top serve in this case? Any idea?

    Error details:

    oracle.apps.fnd.framework.OAException: oracle.jbo.JboException: Houston-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg = oracle, classloader, util, AnnotatedClassFormatError

    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)

    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)

    at _OAErrorPage._jspService(_OAErrorPage.java:221)

    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)

    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:390)

    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)

    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)

    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)

    .....

    # # 0 in detail

    java.lang.NoClassDefFoundError: oracle, classloader, util, AnnotatedClassFormatError

    at xxxxxx.oracle.apps.pos.isp.webui.XXXPosHpageRtColCO.XXXXXXGenerateLog(XXXPosHpageRtColCO.java:362)

    at xxxxxx.oracle.apps.pos.isp.webui.XXXPosHpageRtColCO.processRequest(XXXPosHpageRtColCO.java:66)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:604)

    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)

    at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:353)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:976)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:943)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:663)

    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:252)

    at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:976)

    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:943)

    .....

    I found the solution, that was the problem because the *.class file moved mode binary transfer to server $Java_Top.

  • java.lang.NoClassDefFoundError: FilterConfig

    Hello, we are trying to launch an ear file created by Maven on our server using weblogic. When we run the .ear, we get an error. Here's what the logs show:

    java.lang.NoClassDefFoundError: FilterConfig

    at java.lang.Class.getDeclaredFields0 (Native Method)

    at java.lang.Class.privateGetDeclaredFields(Class.java:2291)

    at java.lang.Class.getDeclaredFields(Class.java:1743)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1024)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1032)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1032)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1017)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.processJ2eeAnnotations(BaseJ2eeAnnotationProcessor.java:98)

    at weblogic.j2ee.dd.xml.J2eeAnnotationProcessor.processJ2eeAnnotations(J2eeAnnotationProcessor.java:37)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processFilters(WebAnnotationProcessorImpl.java:239)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processJ2eeAnnotations(WebAnnotationProcessorImpl.java:210)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processAnnotations(WebAnnotationProcessorImpl.java:105)

    at weblogic.servlet.internal.WebAppServletContext.processAnnotations(WebAppServletContext.java:1359)

    to weblogic.servlet.internal.WebAppServletContext. < init > (WebAppServletContext.java:440)

    to weblogic.servlet.internal.WebAppServletContext. < init > (WebAppServletContext.java:484)

    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:418)

    at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:976)

    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:381)

    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)

    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)

    to weblogic.application.internal.flow.DeploymentCallbackFlow$ 1.next(DeploymentCallbackFlow.java:507)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)

    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:149)

    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)

    to weblogic.application.internal.BaseDeployment$ 1.next(BaseDeployment.java:1221)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)

    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:367)

    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)

    at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)

    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:207)

    at weblogic.deploy.internal.targetserver.operations.StartOperation.createAndPrepareContainer(StartOperation.java:88)

    at weblogic.deploy.internal.targetserver.operations.StartOperation.doPrepare(StartOperation.java:101)

    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)

    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)

    at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)

    at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)

    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)

    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)

    to weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$ 000 (DeploymentReceiverCallbackDeliverer.java:13)

    to weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$ 1.run(DeploymentReceiverCallbackDeliverer.java:46)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:528)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Caused by: java.lang.NoClassDefFoundError: FilterConfig

    at java.lang.Class.getDeclaredFields0 (Native Method)

    at java.lang.Class.privateGetDeclaredFields(Class.java:2291)

    at java.lang.Class.getDeclaredFields(Class.java:1743)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1024)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1032)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1032)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.getFields(BaseJ2eeAnnotationProcessor.java:1017)

    at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.processJ2eeAnnotations(BaseJ2eeAnnotationProcessor.java:98)

    at weblogic.j2ee.dd.xml.J2eeAnnotationProcessor.processJ2eeAnnotations(J2eeAnnotationProcessor.java:37)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processFilters(WebAnnotationProcessorImpl.java:239)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processJ2eeAnnotations(WebAnnotationProcessorImpl.java:210)

    at weblogic.servlet.internal.WebAnnotationProcessorImpl.processAnnotations(WebAnnotationProcessorImpl.java:105)

    at weblogic.servlet.internal.WebAppServletContext.processAnnotations(WebAppServletContext.java:1359)

    to weblogic.servlet.internal.WebAppServletContext. < init > (WebAppServletContext.java:440)

    to weblogic.servlet.internal.WebAppServletContext. < init > (WebAppServletContext.java:484)

    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:418)

    at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:976)

    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:381)

    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)

    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)

    to weblogic.application.internal.flow.DeploymentCallbackFlow$ 1.next(DeploymentCallbackFlow.java:507)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)

    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:149)

    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)

    to weblogic.application.internal.BaseDeployment$ 1.next(BaseDeployment.java:1221)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)

    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:367)

    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)

    at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)

    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:207)

    at weblogic.deploy.internal.targetserver.operations.StartOperation.createAndPrepareContainer(StartOperation.java:88)

    at weblogic.deploy.internal.targetserver.operations.StartOperation.doPrepare(StartOperation.java:101)

    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)

    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)

    at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)

    at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)

    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)

    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)

    to weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$ 000 (DeploymentReceiverCallbackDeliverer.java:13)

    to weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$ 1.run(DeploymentReceiverCallbackDeliverer.java:46)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:528)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    What exactly is a FilterConfig? And how can I do to meet this error?

    Add the following Maven dependency in the pom.xml.

    javax.portlet

    portlet-api

    2.0

Maybe you are looking for