Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6204775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:09:20+00:00 2026-05-24T05:09:20+00:00

I have a Mavenized Spring MVC project that deploys locally or remotely (passing all

  • 0

I have a Mavenized Spring MVC project that deploys locally or remotely (passing all tests) using the jetty plugin.

However when I try to deploy the war file to a tomcat 6 server, I see the jstl tags in the source. The JSTL jar is in the lib folder, and no errors are shown on startup.

SO if I visit http://myserver:8081/ I see the landing page, but elements that should use the jstl core tags just dump the raw source.

Example

<html xmlns:c="http://java.sun.com/jsp/jstl/core"><c:url value="resources" var="resources_url"/><c:url value="/" var="home_url"/><head>

<c:choose><c:when test="true"><ul><c:forEach varStatus="x" var="entry" items="[SyndEntryImpl.contributors=[]
SyndEntryImpl.contents=[]
SyndEntryImpl.updatedDate=Wed Jul 27 13:24:29 EDT 2011
SyndEntryImpl.link=http://myserver/2011/07/27/Capability+Management+-+Community+Style
SyndEntryImpl.foreignMarkup=[]
SyndEntryImpl.links[0].hreflang=null

Included jars:

webapps/ROOT/WEB-INF/lib/
|-- antlr-2.7.6.jar
|-- aopalliance-1.0.jar
|-- asm-3.1.jar
|-- aspectjlib-1.6.2.jar
|-- aspectjrt-1.6.7.jar
|-- aspectjweaver-1.6.7.jar
|-- cglib-2.2.jar
|-- common-2.1.0.jar
|-- commons-beanutils-1.8.0.jar
|-- commons-codec-1.4.jar
|-- commons-collections-3.1.jar
|-- commons-digester-1.8.1.jar
|-- commons-io-1.2.jar
|-- commons-lang-2.4.jar
|-- commons-logging-1.0.4.jar
|-- dom4j-1.6.1.jar
|-- ecore-2.1.0.jar
|-- ehcache-core-2.1.1.jar
|-- emf-2.1.0.jar
|-- events-1.0.jar
|-- health-2.0-BETA-6.jar
|-- hibernate-annotations-3.5.6-Final.jar
|-- hibernate-commons-annotations-3.2.0.Final.jar
|-- hibernate-core-3.5.6-Final.jar
|-- hibernate-entitymanager-3.5.6-Final.jar
|-- hibernate-jpa-2.0-api-1.0.0.Final.jar
|-- hibernate-validator-4.1.0.Final.jar
|-- jackson-core-asl-1.6.4.jar
|-- jackson-mapper-asl-1.6.4.jar
|-- javassist-3.9.0.GA.jar
|-- jdom-1.0.jar
|-- joda-time-1.6.jar
|-- jsr250-api-1.0.jar
|-- jstl-1.1.2.jar
|-- jta-1.1.jar
|-- log4j-1.2.14.jar
|-- logging-1.1.jar
|-- mysql-connector-java-5.1.8.jar
|-- rome-1.0.0.jar
|-- slf4j-api-1.5.11.jar
|-- slf4j-log4j12-1.4.3.jar
|-- spring-aop-3.0.5.RELEASE.jar
|-- spring-asm-3.0.5.RELEASE.jar
|-- spring-beans-3.0.5.RELEASE.jar
|-- spring-context-3.0.5.RELEASE.jar
|-- spring-context-support-3.0.5.RELEASE.jar
|-- spring-core-3.0.5.RELEASE.jar
|-- spring-expression-3.0.5.RELEASE.jar
|-- spring-jdbc-3.0.5.RELEASE.jar
|-- spring-jms-3.0.5.RELEASE.jar
|-- spring-orm-3.0.5.RELEASE.jar
|-- spring-tx-3.0.5.RELEASE.jar
|-- spring-web-3.0.5.RELEASE.jar
|-- spring-webmvc-3.0.5.RELEASE.jar
|-- tiles-api-2.1.4.jar
|-- tiles-core-2.1.4.jar
|-- tiles-jsp-2.1.4.jar
|-- tiles-servlet-2.1.4.jar
|-- urlrewritefilter-3.1.0.jar
|-- validation-api-1.0.0.GA.jar
`-- xml-apis-1.0.b2.jar

I’m sure that is not enough to help, but just let me know what files/logs can help and I will append them.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:09:21+00:00Added an answer on May 24, 2026 at 5:09 am

    Well, this is pretty silly, but although the JSTL and tiles jars are included, the core TagLib jar was not. This was in Maven as a “provided” dependency.

    That explains why it was being included in the Jetty plugin, but left out of my final war file. Changing that to compile scope and everything is working fine.

    <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
            <scope>compile</scope>
        </dependency>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a mavenized project with dependencies upon 4 others mavenized projects that my
I have an ear file that is generated through Maven EAR plugin. The ear
I have a whole bunch of mavenised projects, and I want to check that
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I
I build all my web projects at work using RAD/Eclipse, and I'm interested to
Have problem while getting data from Memcached on .NET MVC solution. I have this
Have you ever experienced that the Bootstrap doesn't save (with flush or without flush
Have noticed issue while testing iphone app that if one quickly opens/dismisses a modal
have a table that dynamically generates text boxes in run time. I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.