~/Library/LaunchAgents Per-user agents provided by the user.
/Library/LaunchAgents Per-user agents provided by the administrator.
/Library/LaunchDaemons System wide daemons provided by the administrator.
1.Uncaught TypeError: Cannot read property ‘msie’ of undefined
A:The $.browser method has been removed as of jQuery 1.9.
jQuery.browser() removed
The jQuery.browser() method has been deprecated since jQuery 1.3 and is removed in 1.9. If needed, it is available as part of the jQuery Migrate plugin. We recommend using feature detection with a library such as Modernizr.
— jQuery Core 1.9 Upgrade Guide.
As stated in the Upgrade Guide you can try using the jQuery Migrate plugin to restore this functionality and let jQuery Tools work.
2.The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path in Eclipse
A:To include http-servlet into your class path, you have two options:
1. In this solution, you can add desired server runtime into your application as project facet. As runtime servers have already servlet runtime dependencies, they get included into your project and hence error is gone.
2. Another option is include the servlet dependency through maven itself. This will also fix the error.
3.Dynamic Web Module 3.1 requires Java 1.7 or newer
A:
Step1:
Make sure your Java Project is configured probably to use Java 1.7.
Right click your project > Properties > Java Compiler and set “Compiler compliance level” to 1.7
Step2:
Java Build Path. Click “Edit“. And change it to “Java 7”
Step3:
Next from the menu on the left select Project Facets > Java and set its version to 1.7
Extra Tips:
If you have maven project try updating source and target version of java compiler to 1.7 in pom.xml file.
Recent Maven plugins have generally an help goal to have in the command line the description of the plugin, with their parameters and types. For instance, to understand the javadoc goal, you need to call:
1
$ mvn javadoc:help -Ddetail -Dgoal=javadoc
It works of course for Maven core plugins. to list all goals of the archetype plugin :
1
$ mvn archetype:help
And it works also for third party plugins. For example, to display all goals of the spring-boot plugin :