Skip to content

Kloping/spt-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

an extension of SpringTool

This is an extension of SpringTool

Suitable for small Web server framework

example

@WebRestController
public class RestController0 {
    @GetMethod("/get")
    public String m0(@RequestParm("name") String name) {
        return "Hello! " + name;
    }

    @GetMethod("/get0")
    public M0 m1(@RequestParm("name") String name) {
        return new M0(name, 10);
    }

    @GetMethod("favicon.ico")
    public void favicon(HttpServletResponse response) throws IOException {
        response.sendRedirect("http://q1.qlogo.cn/g?b=qq&nk=3474006766&s=640");
    }
}
M0
/**
 * @author github.kloping
 */
public class M0 {
    private String name;
    private Integer year;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getYear() {
        return year;
    }

    public void setYear(Integer year) {
        this.year = year;
    }

    public M0(String name, Integer year) {
        this.name = name;
        this.year = year;
    }
}

The prerequisite is to leave the class annotated by @WebrestController in @CommentScan(path) path

Depends on the

  • tomcat
  • SpringTool
  • JvUtils
  • fastjson

About

springtool extension web

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages