'2016/10/12'에 해당되는 글 2건

  1. 2016.10.12 [scala] json 이슈
  2. 2016.10.12 ruby on rails 애플리케이션 실행하기

[scala] json 이슈

scala 2016. 10. 12. 19:18




1) play-js




2) json4s


scala json 라이브러리 중 하나인 json4s 3.2~3.4를 사용하고 있다.


  val json = parse(""" { "type": "general", "name":"sticon"} """)


json.extract[Map[String, Any]]로 호출할 때, No information known about type at ... Exception이 난다.


원인은 library 버전 의존성 또는 library 이슈로 생각된다.



https://github.com/json4s/json4s/issues/124




3) pickling


https://github.com/scala/pickling

Posted by '김용환'
,


참조

http://rubykr.github.io/rails_guides/getting_started.html




ruby on rails 애플리케이션을 실행하려면 다음 절차를 가진다.


1. 외부 라이브러러를 다운받는다.


$ bundle install 



2. 기타 유틸리를 확인해서 설치한다. 

yum 또는 brew를 사용한다.


$ brew install cronolog

(실행 중에 3단계에서 http 요청을 제대로 못할 경우..)



3. rails server



4. 브라우져 실행


 http://localhost:3000/

 http://localhost:3000/uri

Posted by '김용환'
,