forked from webdevwilson/graffiti
-
Notifications
You must be signed in to change notification settings - Fork 0
Graffiti is a lightweight web framework for Groovy inspired by Sinatra
nvcexploder/graffiti
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
What is it?
====================================================================================================
Graffiti is a lightweight web framework for Groovy inspired by Sinatra
Groovy Start:
====================================================================================================
import graffiti.*
// only required once
@Grab('com.goodercode:graffiti:1.0-SNAPSHOT')
@Get('/hello')
def hello() {
'Hello World!'
}
// /hello/name?name=You
@Get('/hello/name')
def helloWhomever() {
"Hello ${parameters[name]}"
}
// a sample post
@Post('/save')
def save() {
'saved it'
}
// static files served from here
Graffiti.root 'public'
// we also have to setup what static files to serve
Graffiti.serve '*.css'
// required to process annotations
Graffiti.serve this
Running It:
====================================================================================================
It's super easy!
groovy $YOUR_FILE_NAME.groovy
Implicit Variables:
====================================================================================================
application - ServletContext
parameters - map of parameters
request - HttpServletRequest
response - HttpServletResponse
session - HttpSession
That's all for now, not sure if or when I will add more features. Feel free to fork it and give it a go!
Cheers!About
Graffiti is a lightweight web framework for Groovy inspired by Sinatra
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published