模板引擎是 velocity(默认引擎) 自己可根据需要稍作修改,如果要大改则需要去看模板引擎的语法了。 package ${package.Controller}; import org.springframework.web.bind.annotation.RequestMapping; #if ...
分类:
其他好文 时间:
2020-05-28 11:32:16
阅读次数:
340
1、配置静态IP地址: # vim /etc/network/interfaces 原内容有如下4行: auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp 以上表示默认使用DHCP分配IP,修改为如下: auto lo ifac... ...
分类:
系统相关 时间:
2020-05-27 18:55:19
阅读次数:
89
网络连接判断,使用IPHost测试获取: 1 public static bool IsIPHostConnected() 2 { 3 try 4 { 5 System.Net.IPHostEntry i = System.Net.Dns.GetHostEntry("www.google.com") ...
分类:
其他好文 时间:
2020-05-27 15:45:58
阅读次数:
62
一、实验要求 找一个系统调用,系统调用号为学号最后2位相同的系统调用 通过汇编指令触发该系统调用 通过gdb跟踪该系统调用的内核处理过程 重点阅读分析系统调用入口的保存现场、恢复现场和系统调用返回,以及重点关注系统调用过程中内核堆栈状态的变化 二、实验环境搭建 2.1安装开发工具 1 sudo ap ...
分类:
其他好文 时间:
2020-05-27 15:33:45
阅读次数:
51
Freenom offers a free domain name service for casual users.The Freenom domain name is free for one year and can be renewed manually before expiration. ...
分类:
其他好文 时间:
2020-05-27 15:19:51
阅读次数:
1404
服务容器(药箱) 就是这个$app 绑定(放药) $app->bind('Apple', function(){ return 一个对象; })解析(取药) resolve('Apple'); //返回一个上面设定好的对象 $this->app->make('HelpSpot\API'); app( ...
分类:
其他好文 时间:
2020-05-27 12:28:52
阅读次数:
95
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zhuohua.server.service.UserService.findPage at org.apache.ibatis. ...
分类:
其他好文 时间:
2020-05-27 12:10:41
阅读次数:
66
一、修改/etc/mysql/my.conf 找到bind-address = 127.0.0.1这一行 改为bind-address = 0.0.0.0即可 二、为需要远程登录的用户赋予权限 1、新建用户远程连接mysql数据库 grant all on *.* to admin@'%' iden ...
分类:
数据库 时间:
2020-05-27 01:20:01
阅读次数:
120
比如:localhost:8701 => niu.totocat.cn:8701 一、修改 host 文件 路径: C:\Windows\System32\drivers\etc 路径如图:修改: 二、执行命令 重置 dns Ipconfig /flushdns 1 ...
分类:
其他好文 时间:
2020-05-26 22:19:16
阅读次数:
93
AllowsTransparency=true是加载winform:panel,控件不显示:原因窗体的逻辑和渲染冲突 <WindowsFormsHost x:Name="wfh" Grid.Row="1" Grid.Column="1" Margin="10,30,10,30" Background ...