reason :
May be jar There's something wrong with the bag .
resolvent :
1. Find the corresponding class that cannot be loaded jar package .
2. stay tomcat in webapps/INF/lib Find the corresponding jar package , Then delete .
3. Download another version of jar package .
3. If it is to use eclipse perhaps myEclipse You have to server Next tomcat Remove this item from add Deployment.
4. Restart the server .( Problem not resolved after restart , Continue to repeat the above operation )
Java Start in project Tomcat Report errors invalid LOC header More articles about
- Tomcat Report errors invalid LOC header
reason : May be jar There's something wrong with the bag . resolvent : 1. Find the corresponding class that cannot be loaded jar package . 2. stay tomcat in webapps/INF/lib Find the corresponding jar package , Then delete . 3. Download another version of jar package . ...
- Eclipse Start in tomcat Report errors :A child container failed during start
I really broke down , First, workspace Collapse , It took a long time to rebuild workspace, And then built a little demo project ,tomcat Start in, but report an error , Choose the more important one 2 The message is as follows : A child container ...
- eclipse Start in tomcat Report errors java.lang.ClassNotFoundException
It started well before , Some startup tomcat I just reported this for no reason java.lang.ClassNotFoundException The fault of . Check maven Dependency package , Find out that this class exists . And then there's a call clean operation ...
- Eclipse Start in Tomcat Report errors :[There is insufficient memory for the Java Runtime Environment to continue.] Solutions for
1, Screenshot of error reporting 2, Error message May 08, 2018 9:57:58 In the morning org.apache.tomcat.util.digester.SetPropertiesRule begin Warning : [Se ...
- Eclipse Start in tomcat Report errors java.lang.OutOfMemoryError: PermGen space Solutions for
Some projects cite too many jar package , Or reflection generates too many classes , XOR has too many constant pools , It's possible to report java.lang.OutOfMemoryError: PermGen space Error of , We know we can get through jvm ...
- maven Error report of project operation invalid LOC header (bad signature)
Switch to the project directory pom.xml Folder Execute the following command : mvn test -e -X Error message found Enter directory to delete files . stay ide You can redeploy the project inside .
- IDEA start-up Tomcat Report errors 1099 is already in use
IDEA Start in Tomcat Report errors ,Error running Tomcat7.0.52: Address localhost:1099 is already in use Or is it java.rmi.se ...
- Address localhost:1099 is already in use(IDEA start-up Tomcat Report errors 1099 is already in use)
IDEA Start in Tomcat Report errors ,Error running Tomcat7.0.52: Address localhost:1099 is already in use Or is it java.rmi.se ...
- maven Project start tomcat Report errors java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
maven Project start tomcat Report errors : java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderLi ...
Random recommendation
- master javascript The most basic data structure in ----- Array
This is an article < Data structure and algorithm javascript describe > Reading notes of . It mainly combs the knowledge about array . Part of the content and source code from the original . The first chapter introduces how to configure javascript Running environment :javascript ...
- Hibernate Of ORM Principle and Implementation
>>Hibernate and ORM ORM The full name is Object Relational Mapping, Object relation mapping . Its implementation idea is to map the data of tables in the relational database to objects , In the form of objects , such ...
- Maximum likelihood estimation & Maximum posterior probability estimation
https://guangchun.wordpress.com/2011/10/13/ml-bayes-map/ http://www.mi.fu-berlin.de/wiki/pub/ABI/Gen ...
- UVA 195 Anagram
The question : Find all combinations of input strings , Output in dictionary order ! solution : Use enumeration ( Before enumeration, find out the minimum dictionary order of the most string ) When enumerating, add enumerating generating conditions ! #include <iostream> #include < ...
- Android Very practical open source project framework
I've integrated all the projects described in this article into one apk in , You can run it directly to see the effect ,2.2 All of the above machines can run . Because it's not allowed to upload directly apk file , I'm compressed into zip package 1. Universal-Image-Loader Realize the difference ...
- zuul introduction (4)zuul Annotations @EnableZuulServer and @EnableZuulProxy
@[email protected] Two notes @EnableZuulProxy It is simply understood as @EnableZuulServer Enhanced Edition , When Zuul And Eureka.Ribbo ...
- shell There are three different ways to call another script in the script (fork, exec, source)
fork ( /directory/script.sh) fork It's the most common , It's used directly in the script /directory/script.sh To call script.sh This script . When running, turn on a sub- ...
- js Learning summary :DOM Node one ( Selectors , Node type )
DOM:document object model Document object model DOM It 's the whole thing HTML The relationship map of documents ( On behalf of the entire HTML file ), It can be understood as the following figure : One . Look at the element node 1.document.getElem ...
- PL/SQL Developer A few tips to use
1. Choose sql The current line of the statement The mouse continuously clicks on the line 3 Time . 2. Remember the login code Tools -> Preferences -> Oracle -> Login history , Check “ With password storage ”. 3. see Oracle Of tnsna ...
- Python isinstance And instance Usage of
instance: instance Belong to python2 Key words of ,python2 If a class does not inherit from object, Then the instantiated object is instance type , Otherwise, it would be class type . isins ...