Skip to content

Commit

Permalink
升级JavaEE-API,从6.0到7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ysc committed Jul 12, 2013
1 parent 8c4b076 commit 224ea04
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion APDPlat_Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<jul-to-slf4j.version>1.6.4</jul-to-slf4j.version>
<jcl-over-slf4j.version>1.6.4</jcl-over-slf4j.version>
<logback-classic.version>0.9.28</logback-classic.version>
<javaee-api.version>6.0</javaee-api.version>
<javaee-api.version>7.0</javaee-api.version>
<junit.version>4.8.2</junit.version>
<quartz.version>1.8.4</quartz.version>
<jcaptcha-all.version>1.0-RC6</jcaptcha-all.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import javax.servlet.ServletOutputStream;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.WriteListener;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
Expand Down Expand Up @@ -380,6 +381,16 @@ public void write(final byte[] b) throws IOException {
public void write(final byte[] b, final int off, final int len) throws IOException {
stream.write(b, off, len);
}

@Override
public boolean isReady() {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public void setWriteListener(WriteListener wl) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
class ResponseUtil {
private static final APDPlatLogger LOG = new APDPlatLogger(ResponseUtil.class);
Expand Down
2 changes: 1 addition & 1 deletion APDPlat_Module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<!-- 主要依赖库的版本定义 -->
<apdplat.version>2.4</apdplat.version>
<junit.version>4.8.2</junit.version>
<javaee-api.version>6.0</javaee-api.version>
<javaee-api.version>7.0</javaee-api.version>

<!-- 主要插件依赖的版本定义 -->
<yuicompressor-maven-plugin>1.3.2</yuicompressor-maven-plugin>
Expand Down
2 changes: 1 addition & 1 deletion APDPlat_Web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<apdplat.version>2.4</apdplat.version>
<wro4j.version>1.7.0</wro4j.version>
<junit.version>4.8.2</junit.version>
<javaee-api.version>6.0</javaee-api.version>
<javaee-api.version>7.0</javaee-api.version>
<!-- 数据库驱动 -->
<mysql.version>5.1.18</mysql.version>
<org.hsqldb.version>2.0.0</org.hsqldb.version>
Expand Down

0 comments on commit 224ea04

Please sign in to comment.