- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CURD:管理员的生成器
CRUD: Administration generator
CURD(增加,读取,更新,删除)模块生成一个完全可用的 web 接口为你的 JPA
模型对象。
The CRUD (Create, Read, Update, Delete) module generates a fully usable web interface for your JPA Model objects.
让我们看一个简单的例子。
Lets see a simple example.
为应用激活 CURD 模块
Enable the CRUD module for the application
在/conf/application.conf,文件中,使用下面一行配置激活 CURD 模块
In the **/conf/application.conf** file, enable the CRUD module by adding this line:
# The crud module module.crud=${play.path}/modules/crud
引入默认的 CURD 路由
Import default CRUD routes
在 conf/routes 文件中,增加下面一行导入默认的模块路由
In the **conf/routes** file, import the default module routes by adding this line:
# Import CRUD routes
* /admin module:crud
不推荐直接使用默认的路由,你可以定义你自己的路由,或者混合使用两者
p(note). **Note** that using the default routes file is not required. You can also define your own routes, or mix the two.
增加一个 User 类
Create a User class
我们从创建一个 User 类开始
We will start by creating a User class:
package models;
import play.*;
import play.db.jpa.*;
import javax.persistence.*; import java.util.*;
@Entity
public class User extends Model {
public
String
name;
public
String
email;
public
String
address;
}
增加一个 Users 控制器
Create the Users controller
然后我们创建一个简单的控制器,只是继承与 CURD 控制器
Then, we create a simple controller that just inherits the CRUD controller.
package controllers;
public class Users extends CRUD {
}
现在打开 http://localhost:9000/admin 然后你可以看到管理员的界面
Now open http://localhost:9000/admin:http://localhost:9000/admin and you should see the User admin area.
!images/crud1!
控制器的类名必须是一个模型类名+s,如果你想使用其他的名字,只需要使用一个注解
The controllers class name has to be the model class name with a final s. If you want to name it differently, you can do it using an annotation.
package controllers;
@CRUD.For(User.class)
public class AdminUsers extends CRUD {
}
User 表单
The User form
点击增加按钮,你应该看到一个 User 表单
Click the **Add** button, and you should see the User form.
!images/crud2!
现在我们给 User 类增加一些验证规则
Now we can add some validation rules to the User class:
package models;
文档评论(0)