java - Does the taglab directive require access to the internet? -


i'm trying work out how submit html form spring mvc controller.

most of the tutorials i'm looking @ want use

<form:form>

and require using taglib directive

<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>

however, application i'm using needs run on internal intranet environment, , can't require access external internet run.

is there way can avoid this? (eg downloading taglib library?).

the http://www.springframework.org/tags/form uri, not url, i.e. it's used identifier given taglib, not a locator go , download anything.

the taglib jar has internal copies of needs, don't have worry being fetched externally @ runtime.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -