1 Star 0 Fork 35

targins / RuoYi-fast-Oracle

forked from 风立 / RuoYi-fast-Oracle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

RuoYi-fast-Oracle

若依 Maven 单模块 Oracle 版本

基于 RuoYi-fast MySQL ,参考 RuoYi-Oracle

若依多模块 MySQL 版本 RuoYi
若依单模块 MySQL 版本 RuoYi-fast MySQL
若依多模块 Oracle 版本 RuoYi-Oracle
如需其他版本,请移步 项目扩展 (不定时更新)

在线体验

admin/admin123

演示地址http://ruoyi.vip
文档地址http://doc.ruoyi.vip
语雀地址https://www.yuque.com/ry
Issues地址https://gitee.com/y_project/RuoYi/issues?state=closed
Issues地址https://gitee.com/racsu/RuoYi-Oracle/issues?state=closed

交流及反馈

bug及其它问题请提Issues或者进群讨论

该问题是怎么引起的?
重现步骤
报错信息

相关的Issue
原因/目的/解决的问题等
描述(做了什么,变更了什么)
测试用例

Issues 地址
https://gitee.com/y_project/RuoYi/issues
https://gitee.com/racsu/RuoYi-Oracle/issues
https://gitee.com/baha/RuoYi-fast-Oracle/issues

若依交流群

若依 QQ 群: QQ群: 加入QQ群 加入QQ群 加入QQ群 加入QQ群 加入QQ群 加入QQ群 加入QQ群 加入QQ群 点击按钮入群。
若依 Oracle 版本交流群: oracle版本交流群 点击按钮入群。

改动内容

application.yml

# PageHelper分页插件
pagehelper:
  helperDialect: oracle

application-druid.yml

driverClassName: oracle.jdbc.OracleDriver
url: jdbc:oracle:thin:@127.0.0.1:1521/orcl
username: ry
password: ry

pom.xml

<oracle.version>10.2.0.4.0</oracle.version>
<dependency>
    <groupId>com.oracle</groupId>
    <artifactId>ojdbc14</artifactId>
    <version>${oracle.version}</version>
</dependency>
<!--oracle驱动没有发布到中央仓库,只能从此仓库下载-->
<repository>
    <id>jeecg</id>
    <name>jeecg Repository</name>
    <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>

gen 模块

参考 ruoyi-oracle,添加序列
    #if($pkColumn.increment)
    -- ${tableName}主键序列
    create sequence seq_${tableName}
    increment by 1
    start with 10
    nomaxvalue
    nominvalue
    cache 20;
    #end

GenTable
    /** 菜单id **/
    private Long menuId;
    
GenTableServiceImpl
    generatorCode()
    // 获取菜单id序列,用于生成菜单sql语句
    long menuId = genTableMapper.selectMenuId();
    table.setMenuId(menuId);
    
参考 RuoYi-Oracle,修改为 Oracle 可用的格式,调整路径相关

sql 文件和 xml 文件

参考 RuoYi-Oracle,修改为 Oracle 可用的格式
修改表 sys_oper_log 的 oper_param 和 json_result 为 varchar2(4000)
`ry_yyyymmdd(更新日期).sql`,此文件中的 function find_in_set,请在 sql 窗口单独执行

User.java 和 Menu.java

return StringUtils.isEmpty(avatar) ? StringUtils.EMPTY : avatar;
return StringUtils.isEmpty(perms) ? StringUtils.EMPTY : perms;
处理数据库对应的列默认值 NULL
<img th:src="(${user.avatar} == '') ? @{/img/profile.jpg} : @{${user.avatar}}" class="img-circle" alt="User Image">

ScheduleConfig.java

prop.put("org.quartz.jobStore.txIsolationLevelSerializable", "false");

代码生成测试用 Oracle 数据,请参考 若依文档-代码生成
(表对应的序列 seq_tableName,在生成的 Xxx.sql 文件中有生成)

新建数据库表结构(单表-Oracle)
create table sys_student (
  student_id           number(11),
  student_name         varchar2(30)             default '',
  student_age          number(3)      	        default null,
  student_sex          varchar2(1)    	        default '0',
  student_status       varchar2(1)    	        default '0',
  student_birthday     date,
  remark               varchar2(500)            default null 
);
alter table sys_student add constraint pk_sys_student primary key (student_id);
comment on table  sys_student                   is '学生名称';
comment on column sys_student.student_id      	is '学生主键seq_sys_student.nextval';
comment on column sys_student.student_name    	is '学生名称';
comment on column sys_student.student_age    	is '年龄';
comment on column sys_student.student_sex    	is '性别(0男 1女 2未知)';
comment on column sys_student.student_status    is '状态(0正常 1停用)';
comment on column sys_student.student_birthday  is '生日';
comment on column sys_student.remark            is '备注';

新建数据库表结构(树表-Oracle)
create table sys_product (
  product_id        number(20)                  not null,
  parent_id         number(20)                  default 0,
  product_name      varchar2(30)                default '',
  order_num         number(4)                   default 0,
  status            varchar2(1)                 default '0'
);
alter table sys_product add constraint pk_sys_product primary key (product_id);
comment on table  sys_product                   is '产品表';
comment on column sys_product.product_id        is '产品id主键seq_sys_product.nextval';
comment on column sys_product.parent_id         is '父产品id';
comment on column sys_product.product_name      is '产品名称';
comment on column sys_product.order_num         is '显示顺序';
comment on column sys_product.status            is '产品状态(0正常 1停用)';

杂项

添加 PermissionUtils.getPrincipalProperty(property)
The MIT License (MIT) Copyright (c) 2018 RuoYi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

若依 Maven 单模块 Oracle 版本 展开 收起
Java
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/tangqin0206/RuoYi-fast-Oracle.git
git@gitee.com:tangqin0206/RuoYi-fast-Oracle.git
tangqin0206
RuoYi-fast-Oracle
RuoYi-fast-Oracle
master

搜索帮助

14c37bed 8189591 565d56ea 8189591