Recently started learning
JSP to make a web application using Postgresql as the backend. I've only been using the JSTL so far when programming the web front end and not doing any raw
java coding. I added a custom data type to Postgresql and got that working on the database end. Now I've come across the problem where JSP is reporting back that I can't insert the data because the types are missmatched (form is sending the type VARCHAR and it's expecting my custom type). I saw how to fix this for when I need to insert Integers using fmt:parseNumber. I'm kind of lost now how to parse for my custom type.
Thanks!