[企业权限管理系统]
ssm整合项目
1 搭建环境
1.1数据库与表结构
1.1 Oracle数据库新建用户和赋予基本权限
create user SSM IDENTIFIED BY "password"
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
grant connect to SSM;
grant resource to SSM;
grant unlimited tablespace to SSM;
1.新建个用户
create user xxxxx(用户名) identified by "密码"
alert user 用户名 identified by “新密码” --修改用户密码
因为新建的用户和默认的用户是锁住的,没有权限。所以新建用户后要给用户赋予权限
grant dba to 用户名 --给用户赋予所有权限,connect是赋予连接数据库的权限,resource 是赋予用户只可以创建实体但是没有创建数据结构的权限。
grant create session to 用户名 --这个是给用户赋予登录的权限。
grant create table to 用户名 --给用户赋予表操作的权限
grant unlimited tablespace to 用户名 --给用户赋予表空间操作的权限
grant select any table to 用户名 --给该用户赋予访问任务表的权限 同理可以赋予update 和delete 的
grant select on B.user to A --这里是给A用户赋予select B用户的user表的查询的权限。同理可以有alter,drop,insert等权限。
-----------------------------注意 这个语句在没有访问另一个用户的权限情况下这个语句要在另一个用户登录情况下执行,这样才能生效。
-------------撤销权限
基本语法同grant,关键字为revoke 如: revoke create tabel to 用户名 就是取消这个用户的对表操作的权限。
-----------查看权限
select * from user_sys_privs;//查看当前用户所有权限
select * from user_tab_privs;//查看所用用户对表的权限
-----------角色
角色即权限的集合,可以把一个角色授予给用户,管理角色的权限比较简单,可以在一个用户下创建多个角色,用户只需要添加角色就可以管理权限了,便于用户管理权限。
create role myrole;//创建角色
grant create session to myrole;//将创建session的权限授予myrole
grant myrole to zhangsan;//授予zhangsan用户myrole的角色
drop role myrole;删除角色
1.2 创建表
产品表信息描述
序号 | 字段名称 | 字段类型 | 字段描述 |
---|---|---|---|
1 | id | varchar2(32) | 无意义主键uuid |
2 | productNum | varchar2(50) | 产品编号,唯一,不为空 |
3 | productName | varchar2(50) | 产品名称(路线名称) |
4 | cityName | varchar2(50) | 出发城市 |
5 | DepartureTime | timestamp | 出发时间 |
6 | productPrice | number | 产品价格 |
7 | productDesc | varchar2(500) | 产品描述 |
8 | productStatus | int | 状态(0 关闭 1 开启) |
创建表sql
CREATE TABLE product(
id varchar2(32) default SYS_GUID() PRIMARY KEY,
productNum VARCHAR2(50) NOT NULL,
productName VARCHAR2(50),
cityName VARCHAR2(50),
DepartureTime timestamp,
productPrice Number,
productDesc VARCHAR2(500),
productStatus INT,
CONSTRAINT product UNIQUE (id, productNum)
)
1.2 maven工程搭建
1.2.1 创建子模块
rgh-ssm-web rgh-ssm-domain rgh-ssm-service rgh-ssm-dao rgh-ssm-utils 其中创建rgh-ssm-web
时注意我们选择一个web工程
1.2.2 pom.xml
5.0.2.RELEASE
1.6.6
1.2.12
11.2.0.1.0
3.4.5
5.0.1.RELEASE
org.aspectj
aspectjweaver
1.6.8
org.springframework
spring-aop
${spring.version}
org.springframework
spring-context
${spring.version}
org.springframework
spring-context-support
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-orm
${spring.version}
org.springframework
spring-beans
${spring.version}
org.springframework
spring-core
${spring.version}
org.springframework
spring-test
${spring.version}
org.springframework
spring-webmvc
${spring.version}
org.springframework
spring-tx
${spring.version}
junit
junit
4.12
test
javax.servlet
javax.servlet-api
3.1.0
provided
javax.servlet.jsp
jsp-api
2.0
provided
jstl
jstl
1.2
log4j
log4j
${log4j.version}
org.slf4j
slf4j-api
${slf4j.version}
org.slf4j
slf4j-log4j12
${slf4j.version}
org.mybatis
mybatis
${mybatis.version}
org.mybatis
mybatis-spring
1.3.0
c3p0
c3p0
0.9.1.2
jar
compile
com.github.pagehelper
pagehelper
5.1.2
org.springframework.security
spring-security-web
${spring.security.version}
org.springframework.security
spring-security-config
${spring.security.version}
org.springframework.security
spring-security-core
${spring.security.version}
org.springframework.security
spring-security-taglibs
${spring.security.version}
com.oracle
ojdbc14
10.2.0.4.0
javax.annotation
jsr250-api
1.0
org.apache.maven.plugins
maven-compiler-plugin
3.2
1.8
UTF-8
true
这里因为Oracle的商业版权问题,maven的中心资源库中没有ojdbc驱动包,所以需要在maven本地库中安装ojdbc驱动包
将下载好的jar包重命名ojdbc14-10.2.0.4.0.jar后,放在对应的路径:我放在D:\ojdbc14-10.2.0.4.0.jar下的
运行cmd命令(需要事先配置好maven环境变量,最好别用eclipls自带的maven):
然后进入cmd输入命令:mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -Dfile=D:\ojdbc14-10.2.0.4.0.jar。
出现“BUILD SUCCESS”信息说明安装成功
再导入
com.oracle
ojdbc14
10.2.0.4.0
1.3 编写实体类
public class Product {
private String id; // 主键
private String productNum; // 编号 唯一
private String productName; // 名称
private String cityName; // 出发城市
private Date departureTime; // 出发时间
private String departureTimeStr;
private double productPrice; // 产品价格
private String productDesc; // 产品描述
private Integer productStatus; // 状态 0 关闭 1 开启
private String productStatusStr;
}
1.4 编写业务接口
public interface IProductService {
List findAll() throws Exception;
}
1.5 编写持久层接口
public interface IProductDao {
@Select("select * from product")
List findAll() throws Exception;
}
2 ssm整合与产品查询
2.1 Spring环境搭建
2.1.1.编写Spring配置文件applicationContext.xml
oracle
true
2.1.2 使用注解配置业务层
@Service
public class ProductServiceImpl implements IProductService{
@Override
public List findAll() throws Exception {
return null;
}
}
2.2 Spring MVC 环境搭建
2.2.1.web.xml配置
contextConfigLocation
classpath*:applicationContext.xml
org.springframework.web.context.ContextLoaderListener
org.springframework.web.context.request.RequestContextListener
dispatcherServlet
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring-mvc.xml
1
dispatcherServlet
*.do
characterEncodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
characterEncodingFilter
/*
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp
2.2.2.Spring MVC配置文件springmvc.xml
2.2.3.编写Controller
@Controller
@RequestMapping("/product")
public class ProductController {
@Autowired
private IProductService productService;
@RequestMapping("/findAll.do")
public ModelAndView findAll() {
return null;
}
}
2.3 Spring与Spring MVC整合
contextConfigLocation
classpath*:applicationContext.xml,classpath*:spring-security.xml
org.springframework.web.context.ContextLoaderListener
2.4 Spring与MyBatis整合
2.4.1.整合思路
把 mybatis 配置文件(mybatis.xml)中内容配置到 spring 配置文件中 同时,把 mybatis 配置文件的内容清掉
注意: 理 由于我们使用的是代理 Dao , 的模式,Dao 具体实现类由 MyBatis 使用代理方式创建,所以此时
mybatis 配置文件不能删。 当我们整合 spring 和 mybatis 时,mybatis 创建的 Mapper.xml 文件名必须和 Dao
接口 文件 名一致
2.4.2.Spring接管mybatis的Session工厂
MySQL的db.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=utf8
jdbc.username=root
jdbc.password=360
Oracle的db.properties
jdbc.driver=oracle.jdbc.driver.OracleDriver
jdbc.url=jdbc:oracle:thin:@192.168.56.101:1521:orcl
jdbc.username=ssm
jdbc.password=password
2.4.3.自动扫描所有Mapper接口和文件
2.4.4.配置Spring事务
2.5 测试运行
2.5.0 在web模块的pom.xml中加入插件
org.apache.tomcat.maven
tomcat7-maven-plugin
8888
2.2
2.5.1.编写jsp页面
2.5.1.1 请求发起页面 index.jsp
2.5.2 Controller
//查询全部产品
@RequestMapping("/findAll.do")
public ModelAndView findAll() throws Exception {
ModelAndView mv = new ModelAndView();
List ps = productService.findAll();
mv.addObject("productList",ps );
mv.setViewName("product-list");
return mv;
}
2.5.3 Dao
//查询所有的产品信息
@Select("select * from product")
public List findAll() throws Exception;
2.5.4 对于产品状态的处理
页面上用的是productStatusStr
private Integer productStatus; // 状态 0 关闭 1 开启
private String productStatusStr;
public String getProductStatusStr() {
if(productStatus != null){
//状态 0关闭 1 开启
if(productStatus==0){
productStatusStr = "关闭";
}
if(productStatus==1){
productStatusStr = "开启";
}
}
return productStatusStr;
}
2.5.5 出发时间日期的转换
先写一个日期与字符串相互转换的工具类Dateutils
public class DateUtils {
//日期转换成字符串
public static String datetoString(Date date,String patt){
SimpleDateFormat sdf = new SimpleDateFormat(patt);
String format = sdf.format(date);
return format;
}
//字符串转换成日期
public static Date stringtoDate(String str,String patt) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat();
Date parse = sdf.parse(str);
return parse;
}
}
对出发时间的处理
页面上显示的是departureTimeStr
private Date departureTime; // 出发时间
private String departureTimeStr;
在get方法里
public String getDepartureTimeStr() {
if(departureTime!=null){
departureTimeStr = DateUtils.datetoString(departureTime,"yyyy-MM-dd HH:mm:ss");
}
return departureTimeStr;
}
3.商品添加
3.1 商品添加页面 product-add.jsp
3.2 Controller
//产品添加
@RequestMapping("/save")
public String save(Product product) throws Exception {
productService.save(product);
return "redirect:findAll.do";
}
3.3 Dao
@Insert("insert into product(productNum,productName,cityName,departureTime,productPrice," +
"productDesc,productStatus) values(#{productNum},#{productName},#{cityName}," +
"#{departureTime},#{productPrice},#{productDesc},#{productStatus})")
void save(Product product) throws Exception;
让index.jsp跳转到main.jsp