Changeset 336

Show
Ignore:
Timestamp:
08/19/08 20:43:33 (3 months ago)
Author:
arneke
Message:

Update antiquated docs

Location:
trunk/geowebcache/src/docs
Files:
1 removed
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/geowebcache/src/docs/README.TXT

    r148 r336  
    1 ============================================================================ 
    2                 GeoWebCache 
    3                 (formerly known as JTileCache) 
    4                  
    5                 ak@openplans.org / chris.whitney@gmail.com 
    6 ============================================================================= 
     1The code is currently in a state of flux. Please come back soon :) 
    72 
    8 Building 
    9 --------------------------- 
    10 Using maven to generate a war file: 
    11 1) Edit pom.xml 
     3To build, provided you have Sun Java 1.5 =< , Maven 2.0.x 
     4mvn clean install  
    125 
     6To run: 
     7mvn clean install jetty:run 
     8 
     9To package WAR file: 
     101) Edit pom.xml, enable the war plugin (remove comment markup) 
    13112) mvn clean install 
     123) Retrieve geowebcache.war from target directory. 
    1413 
    15  
    16 Configuration 
    17 ------------------------- 
    18 GeoWebCache 0.8 uses the Spring framework. The application is tied together by applicationContext.xml, which can be found in src/main/resources prior to installation and in WEB-INF/classes after the WAR is installed. 
    19  
    20 For layers you can either use .proterties files for static configuration, or through GetCapabiltiesConfiguration which uses a WMS getCapabilities request to a WMS server to determine what layers are available. 
    21  
    22 GeoWebCache also uses properties files for commons-logging and cache configuration.  Included are sample files for setting up commons-logging with log4j and configuring the JCS cache. 
    23  
    24 Running 
    25 -------------------------- 
    26 Copy the war file into the webapps directory of your application server.  GeoWebCache should be available at http://server:port/geowebcache/ , where it defaults to an index file that shows off three demos. Requests to these are forwarded to sigma.openplans.org 
    27  
    28 Also included is src/docs/JCSAdmin.jsp, a basic cache viewer-- copy it into src/main/webapp (or copy into a running web application root folder) to use. [Since it exposes cache clearing without a password, do not use it for a public-facing server].   
    29  
    30 Debugging: 
    31 ---------------------------- 
    32 See http://geowebcache.org for tips on how to run GeoWebCache in Eclipse.