216 1 分钟

- [root@thunderspeed ~]# ifconfig - bash: ifconfig: command not found... - [root@thunderspeed ~]# - [root@thunderspeed ~]# netstat - bash: netstat: command not found... - [root@thunderspeed ~]# - sudo yum provides ifconfig - sudo yum install net-tools
418 1 分钟

场景:开发完毕,测试时遇到一个问题,公司申请的一个空间安装的是 centos 6.5 版本,默认防火墙未打开,但是性能测试那边因为安装某个插件打开了防火墙(是安装 nvc,具体为什么打开不太清楚),由于防火墙打开了,此时我之前部署到这个系统的 tomcat 服务器遇到访问超时问题,所以需要手动将 8080 端口添加到防火墙允许放行的列表中。 1. 临时关闭防火墙 # service iptables stop 2. 手动增加防火墙端口 #/sbin/iptables -I INPUT -p tcp --dport 9080 -j ACCEPT #/sbin/iptables -I INPUT...
510 1 分钟

# 查找文件内容 从某个具体路径查询: grep -F "ccfly" -R /root/zy/hahah 从当前路径查询: grep -F "查询内容" -R ./ 查询 tomcat 下 18 年 8 月 15 日 10 点 01 到 10 点 02 之间的日志: grep '2018-08-15 10:0[1-2]' logs/catalina.out # ssh(带端口,不带去掉即可) ssh root@106.15.61.237 -p 10333 # sftp(带端口,不带去掉即可) sftp...
414 1 分钟

场景:操作 github 时,例如提交本地项目或文件等。 linux 系统可以使用 sudo 直接安装 git 命令,而 windows 系统需要下载官方 git 安装包,然后使用 git bash 操作,他们操作命令基本一致 touch README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/BrentHuang/MyRepo.git git push -u origin...
322 1 分钟

使用场景:当我们的 select 下拉菜单中可选项过多,可以通过 for 循环来渲染,使用如下。 注意在 js 代码中嵌入了 java 代码 <select id="selectEndMinutes" name="quiz1"> <option value="">请选择分钟</option> <% for(int...
4.9k 4 分钟

说明:这个示例来自肖文吉老师写的《Spring+Mybatis 企业应用实战》第五章第一节 场景:对外访问支持 步骤:1. 加载资源文件;2. 输出国际化 代码:git@github.com:SincerelyUnique/spring-mvc-Internationalization-default.git # 创建资源文件: 在 resources 目录下创建 bundle 文件夹,文件夹里包含三个属性文件,message.properties,message_en_US.properties 和 message_zh_CN.properties,如下 ①...
4.1k 4 分钟

场景:在《spring+mybatis 企业应用实战》一书中第五章,当使用 spring mvc 国际化时,因为在 jsp 中没有引入一个实体类(在 Page 90 页有个 loginForm.jsp 代码),导致运行时抛出异常:java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'user' available as request attribute,具体异常如下: 严重: Neither BindingResult nor plain...
3.7k 3 分钟

Mybatis 是相对于 Hibernate 这种一站式的 ORM 来讲,它是 “半自动化” 的; Model1 和 Model2 ① Model1 模式:Web 应用几乎全部由 JSP 页面(身兼 View 和 Controller 角色)组成,用少量的 JavaBean 来处理数据库连接等操作; ② Model2 模式:Servlet 为前端控制器,后端 JavaBean 完成实际逻辑处理,最后使用 JSP 处理显示逻辑;Model2 是 MVC 设计思想; 3.MVC 与观察者模式对比 ① 观察者模式:观察者与被观察者可以使两个互相对等的对象; ②...
2.6k 2 分钟

配置 http 连接池: # 在 spring-context.xml 配置文件中引入 <import resource="classpath:spring/spring-httpclient.xml" /># 连接池配置文件 spring-httpclient.xml <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"...