let Tools = { contentType: { '.323': 'text/h323', '.3gp': 'video/3gpp', '.aab': 'application/x-authoware-bin', '.aam': 'application/x-authoware-map', ...
分类:
Web程序 时间:
2021-04-07 10:42:03
阅读次数:
0
在autoconfigure模块的spring.factories中,有自动配置类DispatcherServletAutoConfiguration: 进入这个配置类,可以知道这个自动配置只有是Web Application并且发现有DispatcherServlet类的时候才会生效。 那么是什么 ...
分类:
编程语言 时间:
2021-04-06 15:12:48
阅读次数:
0
使用 jsonify 时,返回的 http response 的 Content-Type 是:Content-Type: application/json 使用json.dumps时,Content-Type则是:Content-Type: text/html; charset=utf-8 其他基 ...
分类:
Web程序 时间:
2021-04-06 14:40:10
阅读次数:
0
概述 HttpSession是由javaWeb提供的,session是服务器对象,保存在服务器端 HttpSession是Servlet三大域对象之一,所以他也有setAttribute(),getAttribute(),removeAttribute() HttpSession底层依赖Cookie ...
分类:
Web程序 时间:
2021-04-05 12:14:19
阅读次数:
0
chrome 密码不同步 ubuntu 删掉 ~/.config/google-chrome/Default/‘Login Data' mac mac 下该文件的路径是 /Library/Application Support/Google/Chrome/Profile 1/Login Data w ...
分类:
其他好文 时间:
2021-04-02 13:35:07
阅读次数:
0
Public Sub SavetheattachmentNew(Item As Outlook.MailItem) Dim olApp As New Outlook.Application Dim nmsName As Outlook.NameSpace Dim vItem As Object Se ...
分类:
其他好文 时间:
2021-04-02 13:02:04
阅读次数:
0
(JAVA中过滤器(Filter)与拦截器(Interceptor)) 概述 过滤器(Filter) 过滤器实际上就是对web资源进行拦截,做一些处理后再交给下一个过滤器或servlet处理 通常都是用来拦截request进行处理的,也可以对返回的response进行拦截处理。 拦截器(Interc ...
分类:
编程语言 时间:
2021-04-02 12:57:04
阅读次数:
0
Servlet程序的创建(Idea版本) servlet是Javaee的规范之一。是Javaweb的三大组件之一(servlet程序、filter过滤器、listener监听器)。可以用来接收客户端的请求,并响应数据给客户端。 1.如何创建一个servlet程序 1.创建一个Javaweb工程(具体 ...
分类:
其他好文 时间:
2021-04-01 13:33:21
阅读次数:
0
首先感谢这位大哥帖子:https://www.hangge.com/blog/cache/detail_2461.html 解决如下: 在application.properties加: spring.web.resources.static-locations=classpath:/META-IN ...
分类:
编程语言 时间:
2021-04-01 13:16:56
阅读次数:
0
页面点击下载查询数据库数据写入到SXSSFWorkbook(工作簿)中的`Sheet sheet = xswb.createSheet();`(工作表) 前端发送请求到servlet,把需要的参数传递到后台【我这里把response对象也封装到了(EiInfo inInfo)对象中】(此步骤省略.. ...
分类:
编程语言 时间:
2021-03-31 12:24:47
阅读次数:
0