摘要: xml配置文件: applicationContext-mybatis.xml配置文件(spring,mybatis集成的配置文件) DispatcherServlet-servlet.xml配置文件(spring) mybatis-config.xml 配置文件(mybatis) @Control 阅读全文
posted @ 2017-09-30 09:54 m97i 阅读(195) 评论(0) 推荐(0) 编辑
摘要: mybatis-config.xml 配置文件: 连接数据库的配置文件: jdbc.properties(这个文件要引入mybatis配置文件中) Mapper配置文件: UserMapper.xml(专门存储sql语句的配置文件)(这个文件要引入mybatis配置文件中) test类(junit) 阅读全文
posted @ 2017-09-26 22:19 m97i 阅读(164) 评论(0) 推荐(0) 编辑
摘要: C:\AppServ\MySQL> mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 解决方法: 编辑mysql配置 阅读全文
posted @ 2017-09-24 11:12 m97i 阅读(43432) 评论(0) 推荐(0) 编辑
摘要: JSP Model 1 jsp负责显示/逻辑控制JSP Model 2 jsp负责显示,servlet负责逻辑处理流程发送请求->委托请求给处理器->调用业务对象->返回数据模型->返回ModelAndView->渲染视图->返回控制->产生响应 可以用form标签<%@ taglib prefix 阅读全文
posted @ 2017-09-23 23:49 m97i 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 引用其他配置文件(applicationContext.xml)<import resource="classpath:applicationContext.dao.xml"/>或者在web.xml里统一设置 配置文件要命名规范 也可以写很多个param-value 引入每个文件 (<param-v 阅读全文
posted @ 2017-09-18 23:30 m97i 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 互相之间的引用通过接口来体现不new对象 通过容器获得对象spring两大核心 控制反转IOC/依赖注入DI面向切面AOP applicationContext.xml spring配置文件-><bean id="conDisk" class="dao.impl.ConDisk"> <propert 阅读全文
posted @ 2017-09-13 11:28 m97i 阅读(172) 评论(0) 推荐(0) 编辑
摘要: struts2 <!-- 开启使用开发模式,详细错误提示 --> <!-- <constant name="struts.devMode" value="true"/>--> <!-- 指定每次请求到达,重新加载资源文件 --> <!-- <constant name="struts.i18n.re 阅读全文
posted @ 2017-09-05 12:14 m97i 阅读(121) 评论(0) 推荐(0) 编辑
摘要: cascade:save-update,delete / all影响关联外键的表inverse默认false 主表单向调整 会主动更新关联外键的数据 true需要双向赋值order-by:列名 asc排序 也可以在javabean的映射文件中set标签添加属性 lazy类级默认为true延迟加载 设 阅读全文
posted @ 2017-08-22 00:09 m97i 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1、内联接(典型的联接运算,使用像 = 或 <> 之类的比较运算符)。包括相等联接和自然联接。 内联接使用比较运算符根据每个表共有的列的值匹配两个表中的行。例如,检索 students和courses表中学生标识号相同的所有行。 2、外联接。外联接可以是左向外联接、右向外联接或完整外部联接。 在 F 阅读全文
posted @ 2017-08-21 09:58 m97i 阅读(2788) 评论(0) 推荐(0) 编辑
摘要: url jdbc:mysql://127.0.0.1:3306/sql?useUnicode=true&amp;characterEncoding=utf8 在hibernate的配置文件里 <property name="hibernate.connection.url">jdbc:mysql:/ 阅读全文
posted @ 2017-08-10 10:29 m97i 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 连接网络 查看网络 ifconfig 连接网络 dhclient 网卡名 查看所有网卡ifconfig -a 启用网卡 ifconfig 网卡名 up 禁用网卡 ifconfig 网卡名 down 开启ssh服务 service sshd start停止ssh服务 service sshd stop 阅读全文
posted @ 2017-08-07 12:40 m97i 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1匹配验证-验证Email是否正确 1 2 3 4 5 6 7 8 9 10 11 12 13 14 public static void main(String[] args) { // 要验证的字符串 String str = "service@xsoftlab.net"; // 邮箱验证规则 阅读全文
posted @ 2017-07-25 17:20 m97i 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 行转列 SELECT NAME, MAX(CASE course WHEN '数学' THEN score ELSE 0 END) 数学, MAX(CASE course WHEN '英语' THEN score ELSE 0 END) 英语, MAX(CASE course WHEN '语文' T 阅读全文
posted @ 2017-07-18 21:28 m97i 阅读(167) 评论(0) 推荐(0) 编辑
摘要: jsp页面步骤 1.定义页面位置input类型为hidden的隐藏域名称为pageIndex初始值为12.定义页面长度3.通过请求获得参数的方法传入pageIndex得到pageIndex字符串4.定义当前页面为15.进行页面位置的非空判断 (1)为空则值为1 (2)否则值为页面位置的包装类6.定义 阅读全文
posted @ 2017-06-03 06:19 m97i 阅读(2616) 评论(0) 推荐(0) 编辑
摘要: 内置对象request,responseout,application,session,pageContext,page,config,exception get参数出现在地址栏中 有参数可传播post不出现 安全性高 <jsp:useBean id="newsService" class="com 阅读全文
posted @ 2017-06-02 06:20 m97i 阅读(82) 评论(0) 推荐(0) 编辑
摘要: method="post" enctype="multipart/form-data"> <% request.setCharacterEncoding("UTF-8"); News news=new News(); news.setCreateDate(new Date()); boolean i 阅读全文
posted @ 2017-06-02 06:20 m97i 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.设置Cookie Cookie cookie = new Cookie("key", "value");cookie.setMaxAge(60); 设置60秒生存期,如果设置为负值的话,则为浏览器进程Cookie(内存中保存),关闭浏览器就失效。 cookie.setPath("/test/te 阅读全文
posted @ 2017-05-30 11:04 m97i 阅读(148) 评论(0) 推荐(0) 编辑
摘要: setMaxInactiveInterval和session-config的比较: 1、setMaxInactiveInterval的优先级高,如果setMaxInactiveInterval没有设置,则默认是session-config中设置的时间。 2、setMaxInactiveInterva 阅读全文
posted @ 2017-05-29 18:06 m97i 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: 中文乱码tomcat目录server.xmlconnector port="8080" 位置添加一条 useBodyEncodingForURI="true" //使用页面设置的编码 request.setCharacterEncoding("utf-8");//设置编码格式response.set 阅读全文
posted @ 2017-05-29 09:39 m97i 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 数据定义DDLcreate alter drop truncate 数据操纵DMLinsert select delete update 事务控制TCLcommit savepoint rollback 数据控制DCLgrant revoke cmd连接数据库sqlplus system/123@O 阅读全文
posted @ 2017-05-28 16:16 m97i 阅读(121) 评论(0) 推荐(0) 编辑