码迷,mamicode.com
首页 >  
搜索关键字:domain controller    ( 14266个结果
C#-图片上传
C#-图片上传: controller: 1 public JsonResult ExpressDeliverySign(ExpressDeliverySign_LO_IP model) 2 { 3 HttpFileCollectionBase files = Request.Files; 4 if ...
分类:Windows程序   时间:2021-04-29 11:56:08    阅读次数:0
Spring注解大全
Spring注解 @Controller(表示SpringMVC的Controller)、@RestController(Rest风格控制器,还可以若要返回JSON不需要@ResponseBody了)、@Service(业务服务层)、@Autowired(如果允许null值,required=fal ...
分类:编程语言   时间:2021-04-22 16:17:58    阅读次数:0
21. 用30个类手写V2.0版本之MVC实现
MVC顶层设计 一、请求调用 public class GPDispatcherServlet extends HttpServlet { //保存Controller中URL和Method的对应关系 private List<GPHandlerMapping> handlerMappings = ...
分类:Web程序   时间:2021-04-22 15:16:33    阅读次数:0
自动华键盘使用
from pynput.keyboard import Controller, Key, Listener # 监听按压 def on_press(key): try: print("正在按压:", format(key.char)) except AttributeError: print("正在 ...
分类:其他好文   时间:2021-04-21 12:38:44    阅读次数:0
tensorflow-hub 介绍
tensorflow-hub介绍 tfhub.dev包含一系列模型,根据处理对象Problem domain分成了四类:Image, Text, Vedio, Audio 模型格式 模型格式又可分为TF.js, TFLite, Coral TF.js 是用于浏览器的模型。ref TFLite 使用的 ...
分类:其他好文   时间:2021-04-21 11:56:03    阅读次数:0
套接字编程
##Socket函数 #include <sys/types.h> #include <sys/socket.h> int socket(int domain, int type, int protocol); domain 协议族: AF_OCAL, AF_INT, AF_INET7 type S ...
分类:其他好文   时间:2021-04-19 15:04:18    阅读次数:0
Spring从IOC、DI、Aop到Mvc实现思路
配置阶段 配置web.xml文件 DispatcherServlet 设置init-param configLocation=classpath:application.properties 设置url-pattern /* 配置Annotation @Controller、@Service、@Re ...
分类:编程语言   时间:2021-04-15 12:17:07    阅读次数:0
MyBatis操作数据库
mybatis对数据库的增删改查用<insert>字段来对数据库进行增加操作 <insert id="save" parameterType="mybatis.domain.user" keyColumn="id" keyProperty="id" useGeneratedKeys="true">I ...
分类:数据库   时间:2021-04-14 12:29:41    阅读次数:0
Spring Mvc篇之全局异常处理
一、全局异常处理之注解方式 主要用到的注解有2个 @ControllerAdvice 用在Controller类级别上,可看做是一个增强的Controller @ExceptionHandler 用到Controller中具体的方法上,表明这个方法处理的具体某个异常类型 我们一般在捕获到异常的时候, ...
分类:编程语言   时间:2021-04-14 12:09:04    阅读次数:0
java——文件的上传、下载、删除操作DEMO
记录一下java实现文件的上传、下载、删除的功能demo; /** * Controller */ @Slf4j @RestController @RequestMapping public class FileController { @Resource IFileService fileServ ...
分类:编程语言   时间:2021-04-13 12:53:13    阅读次数:0
14266条   上一页 1 ... 4 5 6 7 8 ... 1427 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!