码迷,mamicode.com
首页 > 编程语言 > 详细

Maven 项目报错 java.httpservlet 和synchronized使用

时间:2017-07-12 00:52:55      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:ati   enc   catch   zed   try   mave   target   结束   表达   

使用java8 的lanmbe表达式时,使用java1.8编译,则会报错

需要在pom.xml的<bulid></build>中添加

<plugins>

          <plugin>

                  <groupId>org.apache.maven.plugins</groupId>

                  <artifactId>maven-compiler-plugin</artifactId>

                   <version>2.3.2</version>

                   <configuration>

                                 <source>1.8</source><!—maven 中源码编译方式 -->

                                 <target>1.8</target>

                                <encoding>utf-8</encoding>

                   </configuration>

            </plugin>

</plugins>

java同步 synchroinzed 

         1,同步方法与非同步方法不相互影响

         2 synchronized  使用时可以防止产生脏读   (lambda)表达式java8特有属性

           TimeUnit    是java 自带的枚举类,可以方便的将时间转换   

         3.  synchronized 方法 在继承中会出现重入现象,即  子类调用父类的同步方法    

         4.synchronized 使用时必须注意在锁中是否存在异常,如果有需要使用try catch处理,不然会结束当前锁

Maven 项目报错 java.httpservlet 和synchronized使用

标签:ati   enc   catch   zed   try   mave   target   结束   表达   

原文地址:http://www.cnblogs.com/JC-0527/p/7153000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!