Skip to content
/ jdonmvc Public

java web framework working on jdon and spring

Notifications You must be signed in to change notification settings

rlnbpr/jdonmvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 

Repository files navigation

jdonmvc

java web framework working on jdon and spring

java example:

public class Controller {

    @In
    private HttpServletRequest request;
    
    @In
    private UserService userService;


    @Path("/blog/:id")
    @GET
    public void show(int id) {
        System.out.println(id);
    }
    
    @Path("/upload")
    @POST
    public void upload(FormFile formFile) {
       
    }
}

groovy example:

@Path("/forum/:id")
void show(int id) {
    println id
}

About

java web framework working on jdon and spring

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published