class BaseApi extends Controller { protected $userId = 0; protected $userName = ''; protected $noLoginAction = []; protected $endTIme = 30000000; publ ...
分类:
其他好文 时间:
2020-11-06 02:20:52
阅读次数:
14
[root@localhost ~]# virsh undefine vhuser-test1error: Failed to undefine domain vhuser-test1error: Requested operation is not valid: cannot undefine d ...
分类:
其他好文 时间:
2020-11-04 19:04:17
阅读次数:
16
首先判断是哪里开始乱码,是前端传值乱码,还是到controller层乱码,或者是数据库乱码。 下面是前端传值,映射springmvc的实体类形参造成乱码,如下图: 解决办法:在web.xml文件中添加以下代码。 <filter> <filter-name>encodingFilter</filter ...
分类:
编程语言 时间:
2020-11-04 18:38:29
阅读次数:
19
[app] # (str) Title of your application title = My Camera # (str) Package name package.name = myapp # (str) Package domain (needed for android/ios pac ...
分类:
其他好文 时间:
2020-11-04 18:36:40
阅读次数:
20
#菜单模块 ##Controller package com.atguigu.atcrowdfunding.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired ...
分类:
其他好文 时间:
2020-11-02 10:21:42
阅读次数:
24
1.关键字解释 //它是一个Controller增强器,可对controller中被 @RequestMapping注解的方法加一些逻辑处理 @ControllerAdvice //异常定义 @ExceptionHandler //返回格式为json,可以使用 @RestControllerAdvi ...
分类:
其他好文 时间:
2020-11-01 20:42:55
阅读次数:
18
.net core mvc 自定义Middleware 处理模块 ...
分类:
Web程序 时间:
2020-11-01 09:37:04
阅读次数:
56
SELECT table_name,table_type,table_schema FROM information_schema.TABLES WHERE table_schema = 'security_domain' AND table_type = 'BASE TABLE'; ...
分类:
数据库 时间:
2020-10-29 09:56:35
阅读次数:
29
import com.aaa.controller.vm.MenuVM; import com.aaa.entity.Menu; import java.util.ArrayList; import java.util.List; /** * 组装菜单树工具类 * Created by cws * ...
分类:
其他好文 时间:
2020-10-29 09:51:59
阅读次数:
27
/** 原始注解:用途,自己编写的类注入容器使用* @Component* @Controller* @Service* @Repository* 以上4个功能基本一样,类似加入<bean id="userDao" class="cn.UserImpl"></bean>** @Autowired:自 ...
分类:
编程语言 时间:
2020-10-29 09:39:15
阅读次数:
24