04 2018 档案

摘要:一、据我所知,目前有3中方法可以设置session有效期: A、使用java函数:session.setMaxInactiveInterval() B、在工程web.xml中的session-config中配置 注意:以分钟为单位,必须为整数。如果 session-timeout元素的值为零或负数, 阅读全文
posted @ 2018-04-18 13:48 wumengjuan 阅读(296) 评论(0) 推荐(0) 编辑
摘要:一、数据库隔离级别:是在在数据库操作中,为了有效保证并发读取数据的正确性提出的。 隔离级别越高,越能保证数据的完整性和一致性,但是对并发性能的影响也越大。对于多数应用程序,可以优先考虑把数据库系统的隔离级别设为Read Committed。它能够避免脏读取,而且具有较好的并发性能。尽管它会导致不可重 阅读全文
posted @ 2018-04-18 13:46 wumengjuan 阅读(865) 评论(0) 推荐(0) 编辑
摘要:spring-mybatis.xml <import resource="classpath:META-INF/cxf/cxf.xml"/> <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> <!-- 扫描cxf包 --> <c 阅读全文
posted @ 2018-04-12 15:08 wumengjuan 阅读(248) 评论(0) 推荐(0) 编辑
摘要://创建文本 Document document = new Document(); try { //写入文本到文件中 PdfWriter.getInstance(document, new FileOutputStream("Paragraph.pdf")); //打开文本 document.op 阅读全文
posted @ 2018-04-12 14:14 wumengjuan 阅读(155) 评论(0) 推荐(0) 编辑
摘要:sqlplus /nolog --链接数据dba conn /as sysdba --给bim_dev授权,可以修改sys.mlog$表的权限 grant update on sys.mlog$ to BIm_dev; 阅读全文
posted @ 2018-04-11 13:35 wumengjuan 阅读(311) 评论(0) 推荐(0) 编辑
摘要:// 1.导入excel模板 String targetPath = rs.getSession().getServletContext() .getRealPath("/excelModel/" + fileName + ".xlsx"); // 2.创建一个workbook,对应一个Excel文 阅读全文
posted @ 2018-04-10 17:47 wumengjuan 阅读(13537) 评论(0) 推荐(0) 编辑
摘要:SpringMVC的工作原理图: SpringMVC流程 1、 用户发送请求至前端控制器DispatcherServlet。 2、 DispatcherServlet收到请求调用HandlerMapping处理器映射器。 3、 处理器映射器找到具体的处理器(可以根据xml配置、注解进行查找),生成处 阅读全文
posted @ 2018-04-09 15:01 wumengjuan 阅读(108) 评论(0) 推荐(0) 编辑
摘要:1.pom.xml配置 <cxf.version>3.1.7</cxf.version> <!-- cxf.dependency --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws< 阅读全文
posted @ 2018-04-08 14:32 wumengjuan 阅读(146) 评论(0) 推荐(0) 编辑
摘要:--1创建logcreate MATERIALIZED VIEW LOG ON gh_qyghgx WITH rowid;create MATERIALIZED VIEW LOG ON gh_qyxx WITH rowid;--2创建物化视图create materialized view GH_Q 阅读全文
posted @ 2018-04-03 18:24 wumengjuan 阅读(262) 评论(0) 推荐(0) 编辑
摘要:--1. 查询表空间使用情况 SELECT UPPER(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB "表空间大小(M)", D.TOT_GROOTTE_MB - F.TOTAL_BYTES "已使用空间(M)", TO_CHAR(ROUND((D.TOT_ 阅读全文
posted @ 2018-04-03 18:15 wumengjuan 阅读(295) 评论(0) 推荐(0) 编辑