WEB开发网
开发学院软件开发Java 精通 Grails: 创建自定义插件 阅读

精通 Grails: 创建自定义插件

 2009-10-26 00:00:00 来源:WEB开发网   
核心提示: 清单 8. 使用 curl 查看失败 Web 服务类的细节$curl--verbose"http://is.gd/api.php?longurl=IAmNotAValidUrl"*Abouttoconnect()tois.gdport80(#0)*Trying78.31.10


清单 8. 使用 curl 查看失败 Web 服务类的细节
$ curl --verbose "http://is.gd/api.php?longurl=IAmNotAValidUrl" 
* About to connect() to is.gd port 80 (#0) 
*  Trying 78.31.109.147... connected 
* Connected to is.gd (78.31.109.147) port 80 (#0) 
> GET /api.php?longurl=IAmNotAValidUrl HTTP/1.1 
> User-Agent: curl/7.16.3 (powerpc-apple-darwin9.0) libcurl/7.16.3 
         OpenSSL/0.9.7l zlib/1.2.3 
> Host: is.gd 
> Accept: */* 
> 
< HTTP/1.1 500 Internal Server Error 
< X-Powered-By: PHP/5.2.6 
< Content-type: text/html; charset=UTF-8 
< Transfer-Encoding: chunked 
< Date: Wed, 19 Aug 2009 17:33:04 GMT 
< Server: lighttpd/1.4.22 
< 
* Connection #0 to host is.gd left intact 
* Closing connection #0 
Error: The URL entered was not valid. 

现在这个插件的核心功能已经实现并经过测试,您应该创建一个方便的服务,以一种 Grails 友好的方式公开这两个实用程序类。

创建 ShortenUrl 服务

要创建一个服务,输入 grails create-service ShortenUrl。将清单 9 中的代码添加到 grails-app/services/ShortenUrlService.groovy。


清单 9. ShortenUrl 服务
import org.grails.shortenurl.* 
 
class ShortenUrlService { 
  boolean transactional = false 
 
  def tinyurl(String longUrl) { 
   return TinyUrl.shorten(longUrl) 
  } 
 
  def isgd(String longUrl) { 
   def shortUrl = IsGd.shorten(longUrl) 
   if(shortUrl.contains("error")){ 
    log.error(shortUrl) 
   } 
   return shortUrl 
  } 
} 

上一页  2 3 4 5 6 7 8 9 10  下一页

Tags:精通 Grails 创建

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接