mybatis自动生成代码
当我们使用 mybatis 时,为减少代码量,可以选择自动生成数据库连接代码,下面是以连接 postgresql 为例
- 准备 jar 包(2 个),
postgresql-9.2-1003-jdbc4.jar (jdbc 驱动)
mybatis-generator-core-1.3.2.jar (改为可执行文件)
my.xml (需要根据这个文件配置进行生成)
UserInfo.java (1 个 pojo 类)
当我们使用 mybatis 时,为减少代码量,可以选择自动生成数据库连接代码,下面是以连接 postgresql 为例
这是一个 spring 集成 mybatis 的小项目实践,通过 spring 的 bean 管理,配置 mybatis 的 mapper,同时使用阿里巴巴连接池 druid,连接到 postgresql 数据库,实现 insert 插入操作
生产中,因为 dashboard 需要实时反馈产线产能及良率状态,所以需要禁掉 liferay 里面的 session 过期机制,故而需要引入对 session 的处理:
方法如下
RESTful Web Service Good Design Practice
Purpose
We should make sure have a friendly and sententious URL definition in vision server side, and in our program, a very important point is to position our resources for user, so that we need to display a good and friendly uri for users include developers.
REST(representational state transfer) is an architectural style consisting of a coordinated set of components,connectors,and data elements within a distributed hypermedia system.it refers to a collection of architecture constraints and principles, it is an application design.a style!
So, we need it in our vision server.