user667340
user667340

Reputation: 531

Error while importing in jsp page

i want to perform some test by using Json . I am using google app engine for development . I want to know how to import json lib and how i can import in jsp page . The work i have done so far can be seen in pictureenter image description here

i am not sure that i have added jar file correctly or not it is marked with red . Thanks

Upvotes: 1

Views: 2169

Answers (2)

planetjones
planetjones

Reputation: 12633

Oh right Gson is the Google JSON library - you'll need to import it in your JSP. Make sure it's on the Build Path for your project for example

<%@ page import="com.google.gson.Gson" %>

Upvotes: 1

Jigar Joshi
Jigar Joshi

Reputation: 240996

You need to import them on jsp as well, the same way you have imported List

See Also

Upvotes: 1

Related Questions