排序
标准I/O库的缓冲方式
标准I/O库提供缓冲的目的:尽可能减少使用read和 write调用的次数。它也对每个I/O流自动地进行缓冲管理,从而避免了应用程序需要考虑这一点所带来的麻烦。 遗憾的是,标准I/O库最令人迷惑的也是它...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)Creating the VM Shell File
Link to the main post Once you’ve pressed the enter key from the Part-1, you’ll start seeing the following on the command prompt: Starting the PeopleSoft Environment Setup Proces...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)ElasticSearch
We’re almost there! HCM PI 34 bundles ElasticSearch and Kibana. On Linux, both these directories are available under /opt/oracle/psft/pt/ES/pt. Sasank’s posts provide a lot of...
什么是ORM思想?
主要目的:操作实体类相当于操作数据库表 两个映射:实体类和表、实体类中属性和表中字段的映射关系 不再关注:Sql语句 实现了ORM思想的框架:Mybatis、hibernate等。 ORM 对象关系映射(Object...
什么是AOP?面向切面编程(AOP)的理解
什么是AOP? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP...
记录一次Centos 7下安装MariaDB的步骤
最近想折腾一下我的vps练练技术,记录一下步骤,供以后参考。 本来想装Mysql来着,但是感觉安装麻烦点,而且官网版本有些眼花缭乱的,试试MySQL同父同源的MariaDB。 首先查询是否安装过,我因为...
C语言基础教程循环语句&算法习题
/** * File Name: practice.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月16日 星期三 10时48分01秒 **/ #include <stdio.h> #include <math.h> /** *...