Play之Scala-Web项目运行流程-简单分析(2)

为了方便开发,我们将此工程转化为Eclipse项目,然后通过sftp下载到本地并导入到Eclipse里分析!

如果您的项目还在运行,就关了(通过Ctr+C吧)它,然后进入play命令行下:

01 [root@centos6-vb eee]# ls
02 app  build.sbt  conf  logs  project  public  README  target  test
03 [root@centos6-vb eee]# /opt/play/play-2.2.2/play
04 [info] Loading project definition from /data/workspace/eee/project
05 [info] Set current project to eee (in build file:/data/workspace/eee/)
06        _
07  _ __ | | __ _ _  _
08 '_ \| |/ _' | || |
09 |  __/|_|\____|\__ /
10 |_|            |__/
11  
12 play 2.2.2 built with Scala 2.10.3 (running Java 1.7.0_17), http://www.playframework.com
13  
14 > Type "help play" or "license" for more information.
15 > Type "exit" or use Ctrl+D to leave this console.
16  
17 [eee] $ eclipse
18 [info] About to create Eclipse project files for your project(s).
19 [info] Successfully created Eclipse project files for project(s):
20 [info] eee
21 [eee] $

导出到本地Windows开发环境下(不会的看我另一篇博客:SecureCRT与sftp)



---------------------------------------------------------------------------------------------------

下面是我们导入到Eclipse后的项目结构:(如果导入不成功的话,就在Eclipse里新建工程,名字和那个工程一致,就能行了)

一、路由

有过Rails编程经验的人都知道路由这个概念,路由的功能就是寻路--用户发起一个请求怎么能被正确处理?就靠它了!我们看看路由配置信息:

1 # Routes
2 # This file defines all application routes (Higher priority routes first)
3 # ~~~~
4  
5 # Home page
6 GET     /                           controllers.Application.index
7  
8 # Map static resources from the /public folder to the /assets URL path
9 GET     /assets/*file               controllers.Assets.at(path="/public", file)

只关注:  GET     /       controllers.Application.index   这条信息就好了,指明了在默认缺省情况下,通过get命令所指向的处理Controller处理

controllers.Application的逻辑:

01 package controllers
02  
03 import play.api._
04 import play.api.mvc._
05  
06 object Application extends Controller {
07  
08   def index = Action {
09     Ok(views.html.index("Your new application is ready."))
10   }
11  
12 }

index是Controller "Application" 的一个action(action的概念不说了),只有一条语句:

1 Ok(views.html.index("Your new application is ready."))

看经典介绍:
任何Action对象必须获得反返回的Result对象
Ok继承于Result对象,所以返回Ok表示其包含的内容为HTTP 200 OK状态(在Scala里默认返回最后一行)

我们现在不管上面的OK里的内容,我们先从最简单的开始学习,把那行改为:

1 Ok("欢迎使用Play!")

上传后运行查看浏览器结果:

因为此时传入Ok中对象类型为String,Ok将其Content-type作为text/plain输出

再改一下:

1 import play.api.templates._
2  
3 Ok(Html("<strong>欢迎使用Play!</strong>"))

运行效果:

此需要返回并告知Ok这是段Html格式内容而非纯文本。

到此,我们暂时先这么总结:

浏览器 ( http://localhost:9000/ )-> Play 框架 (conf/routes) -> 对应的Controller代码 (app/controllers/Application.scala) -> 对应的返回Action (def index = Action {...}) 的方法 -> 对应的可返回Result的代码 (OK(...)) -> 要返回的正文内容 ( "..." 纯文本 或 Html("...) HTML格式)

参考博客:

Scala语言与Play框架入门教程 (初稿)http://cn.tanshuai.com/a/getting-started-scala-play


原文地址:http://my.oschina.net/hanzhankang/blog/205961

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值