摘要:
tomcat启动红色警告,虽然没影响项目启动运行,但是看着很不爽啊,得搞一波。 严重: Unable to process Jar entry [module-info.class] from Jar [jar:file:/D:/maven/repository/com/fasterxml/jack 阅读全文
摘要:
import java.awt.Color; public class YanSeFormat { // 颜色码转为color对象 public static Color StringToColor(String str) { int i = Integer.parseInt(str.substri 阅读全文
摘要:
//登录管理员用户sqlplus system/123456@orcl? //创建用户create user 用户名 identified by 密码;例子:create user xxzx_sccard identified by xxzx2019; //新建表空间并设置表空间大小、自增长crea 阅读全文
摘要:
一、需求 数据库有个表car,需要为这个表建立一个视图view_car,并新建一个用户user01,赋予查询这个视图的权限 二、实施步骤 1、以管理员clgl登陆数据库,新建视图view_car: create or replace view view_car as select * from CA 阅读全文