• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

SpringBoot not reading in SpringForm tag lib libraries

 
Ranch Hand
Posts: 1049
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear expert,

I have tried but to no avail to make my Spring Boot web app reading in Spring form tag even though everything is there.

Here's how I put the tag lib on top of the form



Here's my pom.xml



I have tried deleting the spring-mvc from .m2 folder, run clean and installed, updated maven but it is still not working

Here's the error :

Please see attached.

Hope someone can tell me how to make SpringBoot taking in the taglib and the SpringForm tag libraray.  Tks!
SpringBoot-not-reading-in-Tag-libraries.jpg
[Thumbnail for SpringBoot-not-reading-in-Tag-libraries.jpg]
 
Ranch Hand
Posts: 93
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Your closing head tag </head> needs to be as shown below.  Your code appears to have wrapped the body tags within the head tags, which is incorrect.

 
tangara goh
Ranch Hand
Posts: 1049
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Tim.

I also managed to make the taglib error go away.

What I did :

I created a folder Lib under WEB-INF and then I put in Spring-MVC jar, JSTL jar, standard.1.1.2 jar.

After that, I right click on those yellow error marks and right click validate and all the errors are all gone.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic