| Author |
Adding JSON package for Tomcat
|
Toulouse Laurent
Greenhorn
Joined: Oct 14, 2001
Posts: 8
|
|
Hi, I am using linux to run tomcat and want to utilize org.JSON package. I downloaded the source code from http://www.json.org/java/index.html. I am unsure how to configure this external package so I can use it in my JSP files. I can't add it to my JAVA/etc bin because I do not have admin permission. Any simple solutions? Thanks!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56229
|
|
|
"Toulouse", please check your private messages for an important administrative matter.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
|
Once you compile the classes, put the class files (with their proper directory structure) in the WEB-INF/classes directory of your application.
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
|
There are two ways to add it to your web application: as Ben says, add the *.class files to WEB-INF/classes (together with your own class files), or if it's in a JAR file, add the JAR file to WEB-INF/lib of your web application.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Adding JSON package for Tomcat
|
|
|