在本文中,我们将为您详细介绍解决:Cannotfindthetaglibrarydescriptorfor"http://java.sun.com/jsp/jstl/core"的相关知识,并且为您解答
在本文中,我们将为您详细介绍解决:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"的相关知识,并且为您解答关于解决肚子胀气最快方法的疑问,此外,我们还会提供一些关于10 Interesting JavaScript and CSS Libraries for February 2020、<%@ taglib prefix="c" uri="http://java.sun.com/jst、ajax跨域:Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.、Can not find the tag library descriptor for "http://www.springframework.org/security/tags"的有用信息。
本文目录一览:- 解决:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"(解决肚子胀气最快方法)
- 10 Interesting JavaScript and CSS Libraries for February 2020
- <%@ taglib prefix="c" uri="http://java.sun.com/jst
- ajax跨域:Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
- Can not find the tag library descriptor for "http://www.springframework.org/security/tags"
解决:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"(解决肚子胀气最快方法)
换电脑了,然后把以前的项目弄到新电脑里,结果所有的jsp就都出这么个问题,以前可以用的不知道是什么原因,可能是eclipse?以前用的eclipse是Mars版本的,现在是官网下的最新版oxygen。网上说缺少standard.jar,但是如果jstl版本是1.2的就不需要这个jar,正巧我的maven配的jstl-1.2的,也确认已经下载了jar,但是还是报这个错,百思不得其解。然后尝试换成jstl-1.1对应的uri值和jstl-1.0对应的uri值,还是不行,后来抱着死马当活马医的心态在pom.xml中添加了:
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
添加了standard.jar后,所有的jsp页面都不报错了,现实真是太讽刺了!!!
以上是我的解决办法,但是问题的原因我还是不知道,为什么以前在eclipse-mars版本跑就ok,现在在eclipse-oxygen就不行,不过也可能是换了新的maven的问题?以前是maven-3.5.0,现在是maven-3.5.2,按理说不是大版本的更新不会差这么多吧?
有知道的小伙伴请给我留言!谢谢!
10 Interesting JavaScript and CSS Libraries for February 2020
https://tutorialzine.com/2020/02/10-interesting-javascript-and-css-libraries-for-february-2020
Our mission at Tutorialzine is to keep you up to date with the latest and coolest trends in web development. That’s why every month we release a handpicked collection of some of the best resources that we’ve stumbled upon and deemed worthy of your attention.
If you enjoy these articles, make sure to subscribe to Dev Awesome. It is our biweekly newsletter where we share cool new libraries, articles, and free design resources!
A-Frame
A-frame is one of the most popular and feature-packed VR frameworks out there. It''s based on web technologies like HTML and JS, so it''s super easy to get into, while at the same time offering support for most major VR platforms like Vive and Rift. It recently had its official v1.0.0 release and is better than ever.
React Nice Dates
Touch-friendly datepicker for React with a beautiful design. The library is fully modular, consisting of separate components and utilities which can be mix-and-matched to create the perfect date picker for your needs.
Snowpack
Revolutionary new tool for bundling JavaScript dependencies. Unlike Webpack and other bundlers, which recompile your assets after every file change, Snowpack does only an initial setup. After everything is compiled, any new changes to your code will be instantly available without a build step.
Craft.js
Great React framework that helps you create user-friendly page editors. It makes it possible to change the content of a web page using drag & drop, detailed text controls, media embeds, and more. Perfect for building content management systems and WYSIWYG apps.
Yarn 2
Yarn offers an excellent alternative to NPM with a number of great features like module caching for using it offline and "flat mode" that works great to reduce duplicating packages. The project just released a new major update so make sure to check it out.
Playwright
Playrwight is an awesome node library by the Microsoft team for building automated write-once-run-everywhere UI tests. It covers most browsers that are based on Chromium, WebKit and Firefox, as well as all the major operating systems. The API is really clean and easy to work with, so that you can quickly open pages, manipulate them, and take screenshots.
VoxelSpace
Interesting GitHub repo for an infinite terrain generator created from scratch. The source code has plenty of comments and is easy to follow, plus the rendering algorithm itself is very well explained in the readme. You can check out the demo here.
Web Extension Starter
This is a really handy starter kit for creating multi-browser web extensions. It makes it super easy to build web addons for Chrome, Firefox and Opera out of the same code base. The kit covers browser specific APIs, manifests, and build files, to make sure your plugin works everywhere.
Mirage
Powerful API mocking library for writing tests without having an actual backend. Mirage can be configured to recreate complex dynamic scenarios, typically only possible when using a real production server. The setup can then be shared with the rest of your codebase so that the tests run on all teammates'' machines.
Panzoom
As the name suggests, Panzoom is a framework for handling pan and zoom actions in your apps. It works great on mobile, supports both DOM elements and SVGs, and offers plenty of customization options.
Bootstrap Studio
The revolutionary web design tool for creating responsive websites and apps.
Learn more<%@ taglib prefix="c" uri="http://java.sun.com/jst
有些时候,<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>会报错,错误提示为:
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
主要原因是缺少
jstl.jar
standard.jar
两个Jar包
在pom.xml增加:
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
如果还不行,请调整jstl.jar 版本,这个主要根据web的version的版本有关。增加如下
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
<taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
<taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
</taglib>
</jsp-config>
ajax跨域:Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
跨域请求时出现:jquery-1.8.3.min.js:2 Failed to load localhost:8526/dvi/1.0/areaIndicesLists: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
js所在页面是在tomcat环境中运行的
Can not find the tag library descriptor for "http://www.springframework.org/security/tags"
OSC 请你来轰趴啦!1028 苏州源创会,一起寻宝 AI 时代
关于解决:Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"和解决肚子胀气最快方法的介绍已经告一段落,感谢您的耐心阅读,如果想了解更多关于10 Interesting JavaScript and CSS Libraries for February 2020、<%@ taglib prefix="c" uri="http://java.sun.com/jst、ajax跨域:Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.、Can not find the tag library descriptor for "http://www.springframework.org/security/tags"的相关信息,请在本站寻找。
本文标签: