首页 > 移动平台 > 详细

Play Framework 完整实现一个APP(一)

时间:2015-10-28 10:42:01      阅读:208      评论:0      收藏:0      [点我收藏+]

 A blog engine project yabe.

 

1.创建工程

>play new yabe 

设置Application Name: Yet Another Blog Engine.

 

2.创建Eclipse配置文件

>play eclipsify yabe

导入Eclipse

 

3.修改index.html

#{extends ‘main.html‘ /}
#{set title:‘Home‘ /}

<h1>A blog will be there</h1>

  

4.修改Application.java

public static void index() {
    	System.out.println("Yop");
        render();
}

 运行测试,查看是否可用

 

 5.设置数据库连接(本例使用的是PostgreSql),修改application.conf

  db.driver=org.postgresql.Driver
  db.url=jdbc:postgresql://localhost:5432/postgre
  jpa.dialect=org.hibernate.dialect.PostgreSQLDialect
  db.user=#####
  db.pass=#####

运行程序,刷新页面,控制台出现以下提示,即为配置正确

 INFO ~ Connected to jdbc:postgresql://localhost:5432/postgres for default
 INFO ~ Application ‘Yet Another Blog Engine‘ is now started !

 

 

..

Play Framework 完整实现一个APP(一)

原文:http://www.cnblogs.com/alex09/p/4916313.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!