IDEA下meavn开发scala程序

IDEA下meavn开发scala程序,一般有两种方式:

  • 第一种:安装好Scala, 通过IDEA Scala插件进行开发

  • 第二种:使用maven插件包进行开发

一、通过IDEA Scala插件开发

1. 安装Scala插件

image

2. 创建 Maven 工程,Add Frameworks Support(Scala)

2.1 创建项目名称为scala-plugin的maven项目

image

2.2 Add Frameworks Support

右键点击工程目录,选择Add Frameworks Support

image

选择Scala,点击确定

image

这样,就可以右键新建Scala文件了

image

1.3 添加scala源目录,进行开发

src/main下新建scala目录,右键 --> Make Directory as --> Source Root

image

在scala目录下新建Test.scala,运行进行验证

image

二、通过maven plugin插件进行开发

1. 添加scala依赖


    1.8
    1.8
    UTF-8
    UTF-8
    1.8
    2.11.8




    
        org.scala-lang
        scala-library
        ${scala.version}
    

2. 添加scala-maven-plugin插件


    
        
        
            net.alchim31.maven
            scala-maven-plugin
            
                
                    scala-compile-first
                    process-resources
                    
                        add-source
                        compile
                    
                
                
                    scala-test-compile
                    process-test-resources
                    
                        testCompile
                    
                
            
            
                ${scala.version}
            
        
    

3. 添加scala源目录进行开发

同 IDEA Scala插件开发的1.3

如果项目需要多人进行合作开发的话,建议使用 maven plugin的方式进行开发

你可能感兴趣的:(IDEA下meavn开发scala程序)