Intellij 导入play framework 项目

新建一个项目

play new helloworld

IshallbeThatIshallbe:~ iamthat$ mkdir temp
IshallbeThatIshallbe:~ iamthat$ cd temp/
IshallbeThatIshallbe:temp iamthat$ ls
IshallbeThatIshallbe:temp iamthat$ play new helloworld
       _
 _ __ | | __ _ _  _
| ‘_ \| |/ _‘ | || |
|  __/|_|\____|\__ /
|_|            |__/

play 2.2.6 built with Scala 2.10.3 (running Java 1.7.0_75), http://www.playframework.com

The new application will be created in /Users/iamthat/temp/helloworld

What is the application name? [helloworld]
> helloworld

Which template do you want to use for this new application? 

  1             - Create a simple Scala application
  2             - Create a simple Java application

> 2
OK, application helloworld is created.

Have fun!

IshallbeThatIshallbe:temp iamthat$ ls
helloworld
IshallbeThatIshallbe:temp iamthat$  

import 这个项目所在的project, 也就是eclipse的workspace, 注意项目在Intellij 就是module 不是project.

一般来说 直接next 到底。 就可以了,到这个界面。

双击build.bst 文件---- 这一步很关键,这是下载加载该module必要包的过程,可以看到最下方的 Event Log 有进程在跑。 Event Log 也提示你是否导入。 选择导入!

之后建立 run configuration. + 后是新建,点击加号新建一个play 2 的run configuration.

最后运行,可以看到控制台成功打印并且运行。

时间: 2024-11-13 10:14:08

Intellij 导入play framework 项目的相关文章

解决使用intellij idea开发MAVEN项目在target目录下不存在mapper.xml文件

原 解决使用intellij idea开发MAVEN项目在target目录下不存在mapper.xml文件 原文章链接:https://blog.csdn.net/beauxie/article/details/65448964 原本在Eclipse中好好的MAVEN项目,导入intellij idea中,服务器启动正常,但在调用userMapper接口时,报以下异常: [java] view plain copy org.apache.ibatis.binding.BindingExcepti

intellij idea创建SpringMVC项目启动tomcat报错

当使用intellij idea创建mvc项目时,如果不够细心会出现以下错误: intellij未能启动组件(StandardEngine(卡特琳娜).StandardHost (localhost) .StandardCont [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.ContainerBase.add 怎么解决呢? 首先,你要排查你的tomcat服务器添加是否正确,然后再看你的idea导入的仓库是否正确,如果确定这些

intellij idea 为JavaEE项目建立Servlet

建立Servlet的方法 顶部菜单栏 View > Tool Windows > Web. 然后互相web窗口 右键Web>new>Servlet 弹出窗口 intellij idea 为JavaEE项目建立Servlet,布布扣,bubuko.com

使用IntelliJ IDEA开发erlang项目

最近erlang版本换到了R17,为了很好支持中文,项目所有模块文件第一行加了文件格式声明:%% coding: latin-1 .但是,erlide会识别这个语句,导致中文显示乱码,这个暂时没有选项可以解决这个问题.所以,我换了新的IDE,就是本文将要介绍的IntelliJ IDEA,这个IDE很好支持erlang,而且能支持eclipse的快捷键. 这里以最新的IDEA 14为例,讲解如何使用IntelliJ IDEA做erlang项目开发? 下载并安装IDEA 先下载IntelliJ ID

AS中导入GitHub开源项目SlidingMenu总结,此方法有效,但是太耗时间。 「我用了半个多小时」

AS中导入GitHub开源项目SlidingMenu总结,我开始AS导入SlidingMenu的时候也百度了很多文章,写的都不是很详细,所以导入成功后,写了这篇文章,希望对想用AndroidStudio导入SlidingMenu的小伙伴有所启发. 先上最终效果图动画 1,下载SlidingMenu(https://github.com/jfeinstein10/SlidingMenu) 2.新建AS项目,把SlidingMenu-master中的library文件夹(我把这个文件夹重命名为sli

eclipse导入maven web 项目 但是不显示成web 项目

http://blog.csdn.net/jun55xiu/article/details/9028403 1:导入Maven webapp项目(以extdirectspring-demo为例): improt  ->  Maven ->Exsiting Maven Projects -->Browses 即可. 2:将Maven webapp项目转化为eclipse web Project 项目 右击项目,点击Properties->Project Facets

JavaEE——Intellij Idea 创建JavaWeb项目

原文:JavaEE--Intellij Idea 创建JavaWeb项目 折腾Tomcat折腾了两个晚上,第一个晚上怎么都进不了Tomcat的首页,第二个晚上进去了,但是新建的Web项目,在浏览器中运行,总是 Error on Apache Tomcat: The requested resource is not available  坑爹!!!!. 首先我要说一点,在IntelliJ IDEA里面“new Project”就相当于我们eclipse的“workspace”,而“new Mod

如何移植.NET Framework项目至.NET Core?

公司的项目一直采用.NET框架来开发Web项目.目前基础类库均为.NET Framework 4.6.2版本.Caching, Logging,DependencyInjection,Configuration等基础设施相关的依赖库一直和官方保持同步,目前是1.1版本..NET Core越来越趋于稳定,新的开发工具也在三月份发布.因此,计划将.NET Framework移植至.NET Core/Strandard.目的是使基于.NET开发的Web应用可以跨平台运行. 按应用场景将公司的项目分为基

Intellij idea 修改maven项目名称

项目是导入的maven项目,自己做了重构,然后想重命名项目名字,用了idea的refactor没用,折腾了好久,原来用从.idea目录下修改,有好几个文件: 把 $PROJECT_DIR$/WeTest.iml 后的.iml文件名字逐个改成项目名即可.