大学写的一个 Java Web 框架

前言

大学刚毕业,专业是电子信息工程。大一开始学Java,准确的说是高三最后的几周开始的. 果真兴趣是最好的老师, 在大一下学期本身从前端到后台写了个人我的网站:TODAY BLOG 。 从注册域名到备案再到网站成功上线,我遇到过的困难不可胜数。由于感兴趣因此我坚持了下来。第一个版本使用的纯Servlet写的。后来了解到Java有不少开源框架能够简化个人开发。因而又投入到新一轮的学习之中...... 学了Struts2后本身学着写了一个小框架:TODAY WEB,几百行搞定从解析xml定义的action处处理对应的请求。学了Spring MVC后,我写了此项目:TODAY WEB 2.0html

简介

Codacy Badge
today web是一个基于Servlet的高性能轻量级Web框架

安装

<dependency>
    <groupid>cn.taketoday</groupid>
    <artifactid>today-web</artifactid>
    <version>2.3.6.RELEASE</version>
</dependency>

复制代码

快速入门

第一步: 新建项目

新建项目

2.png

3.png

> 项目结构前端

项目结构

第二步:引入依赖

<dependency>
    <groupid>cn.taketoday</groupid>
    <artifactid>today-web</artifactid>
    <version>2.3.6.RELEASE</version>
</dependency>

<dependency>
    <groupid>cn.taketoday</groupid>
    <artifactid>today-context</artifactid>
    <version>2.1.5.RELEASE</version>
</dependency>

<dependency>
    <groupid>org.freemarker</groupid>
    <artifactid>freemarker</artifactid>
    <version>2.3.28</version>
</dependency>

复制代码

到此项目创建完毕,并不须要去管 web.xml 文件java

第三步:配置控制器

/** * @author Today <br> * 2018-12-02 22:30 */
@RestController
@RequestMapping("index")
public class IndexController {

    @GET("{key}")
    public String index(@PathVariable int key) {
    	return key + "";
    }
	
    @GET
    @ResponseBody(false)
    public String index() {
    	return "index";
    }
}


复制代码

Freemarker模板git

Freemarker模板

第四步:部署项目到Tomcat

部署项目到Tomcat

查看效果

@GET("{key}")github

7.png

@GETweb

8.png

案例

使用说明

经过 @Controller @RestController 配置控制器json

//@Controller
@RestController
@RequestMapping("/users")
public class UserController {
    
}

复制代码

配置请求浏览器

@GET("index")
@POST("post")
@PUT("articles/{id}")
......
@RequestMapping("/users/{id}")
@RequestMapping(value = "/users/**", method = {RequestMethod.GET})
@RequestMapping(value = "/users/*.html", method = {RequestMethod.GET})
@RequestMapping(value = {"/index.action", "/index.do", "/index"}, method = RequestMethod.GET)
@Interceptor({LoginInterceptor.class, ...})
public (String|List<!--?-->|Set<!--?-->|Map<!--?-->|void|File|Image|...) \\w+ (request, request, session,servletContext, str, int, long , byte, short, boolean, @Session("loginUser"), @Header("User-Agent"), @Cookie("JSESSIONID"), @PathVariable("id"), @RequestBody("users"), @Multipart("uploadFiles") MultipartFile[]) {
    service...
    return ;
}

复制代码

自定义参数转换器session

@Singleton
public class DateConverter implements Converter<string, date> {
    @Override
    public Date convert(String source) throws ConversionException {
        ...
    }
}

复制代码

也能够经过xml文件配置简单视图,静态资源,自定义视图解析器,文件上传解析器,异常处理器,参数解析器app

<!--?xml version="1.0" encoding="UTF-8"?-->


<web-configuration>

    <controller prefix="/error/">
        <action resource="400" name="BadRequest" status="400" />
        <action resource="403" name="Forbidden" status="403" />
        <action resource="404" name="NotFound" status="404" />
        <action resource="500" name="ServerIsBusy" status="500" />
        <action resource="405" name="MethodNotAllowed" status="405" />
    </controller>

    <controller>
        <action resource="redirect:http://pipe.b3log.org/blogs/Today" name="today-blog-pipe" />
        <action resource="redirect:https://taketoday.cn" name="today" />
        <action resource="redirect:https://github.com" name="github" />
        <action resource="redirect:/login" name="login.do" />
    </controller>

    <controller class="cn.taketoday.web.demo.controller.XMLController" name="xmlController" prefix="/xml/">
        <action name="obj" method="obj" />
        <action name="test" resource="test" method="test" />
    </controller>

</web-configuration>

复制代码

登陆实例

@Controller
public class UserController {

/* <controller prefix="/WEB-INF/view/" suffix=".ftl"> <action resource="login" name="login" /> <action resource="register" name="register" /> </controller> */
    
    // @GET("login")
    @RequestMapping(value = "/login" , method = RequestMethod.GET)
    public String login() {
        return "/login/login";//支持jsp,FreeMarker,Thymeleaf,自定义视图
    }
    
    // @POST("login")
    @ResponseBody
    @RequestMapping(value = "/login" , method = RequestMethod.POST)
    public String login(@RequestParam(required = true) String userId, @RequestParam(required = true) String passwd) {
        // service...
        if(userId.equals(passwd)) {
            return "{\"msg\":\"登陆成功\"}";
        }
        return "{\"msg\":\"登陆失败\"}";//支持pojo转json
    }
}

复制代码

文件下载,支持直接返回给浏览器图片

@RequestMapping(value = {"/download"}, method = RequestMethod.GET)
public File download(String path) {
    return new File(path);
}

复制代码
@GET("/display")
public final BufferedImage display(HttpServletResponse response) throws IOException {
    response.setContentType("image/jpeg");
    return ImageIO.read(new File("D:/taketoday.cn/webapps/upload/logo.png"));
}

@GET("captcha")
public final BufferedImage captcha(HttpServletRequest request) throws IOException {
    BufferedImage image = new BufferedImage(IMG_WIDTH, IMG_HEIGHT, BufferedImage.TYPE_INT_RGB);
    Graphics graphics = image.getGraphics();
    graphics.setColor(Color.WHITE);
    graphics.fillRect(0, 0, IMG_WIDTH, IMG_HEIGHT);
    Graphics2D graphics2d = (Graphics2D) graphics;
    drawRandomNum(graphics2d, request);
    return image;
}

复制代码

文件上传,支持多文件

@RequestMapping(value = { "/upload" }, method = RequestMethod.POST)
public final String upload(@Multipart MultipartFile uploadFile) throws IOException {

    String upload = "D:/www.yhj.com/webapps/upload/";
    String path = upload + uploadFile.getFileName();
    File file = new File(path);
    uploadFile.save(file);

    return "/upload/" + uploadFile.getFileName();
}

@POST({"/upload/multi"})
public final String multiUpload(HttpServletResponse response, @Multipart MultipartFile[] files) throws IOException {

    String upload = "D:/www.yhj.com/webapps/upload/";
    
    for (MultipartFile multipartFile : files) {
        String path = upload + multipartFile.getFileName();
        File file = new File(path);
        System.out.println(path);
        if (!multipartFile.save(file)) {
            return "<script>alert('upload error !')</script>";
            //response.getWriter().print("<script>alert('upload error !')</script>");
        }
    }
    //response.getWriter().print("<script>alert('upload success !')</script>");
    return "<script>alert('upload success !')</script>";
}

复制代码

GitHub

github.com/TAKETODAY/t…

疯狂暗示 😋

相关文章
相关标签/搜索