[
https://issues.apache.org/jira/browse/TAJO-1886?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14905457#comment-14905457
]
ASF GitHub Bot commented on TAJO-1886:
--------------------------------------
GitHub user hyunsik opened a pull request:
https://github.com/apache/tajo/pull/781
TAJO-1886: Set compilerSourceVM and compilerTargetVM to web.xml.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/hyunsik/tajo TAJO-1886
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tajo/pull/781.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #781
----
commit ec5d1d9e4085b3e0a7048224c0f6176e108013e9
Author: Hyunsik Choi <[email protected]>
Date: 2015-09-23T22:57:26Z
TAJO-1886: Set compilerSourceVM and compilerTargetVM to web.xml.
----
> Set compilerSourceVM and compilerTargetVM to web.xml
> ----------------------------------------------------
>
> Key: TAJO-1886
> URL: https://issues.apache.org/jira/browse/TAJO-1886
> Project: Tajo
> Issue Type: Improvement
> Components: Web UI
> Reporter: Hyunsik Choi
> Assignee: Hyunsik Choi
> Priority: Critical
> Fix For: 0.11.0, 0.12.0
>
>
> Eliminting explicit diamone operation is only available in JDK 7 or higher.
> But, the default compiler source VM version is 1.5 in jetty. So, we need to
> set the following parameters to web.xml in each web app:
> {noformat}
> <servlet id="jsp">
> <servlet-name>jsp</servlet-name>
> <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
> <init-param>
> <param-name>compilerSourceVM</param-name>
> <param-value>1.7</param-value>
> </init-param>
> <init-param>
> <param-name>compilerTargetVM</param-name>
> <param-value>1.7</param-value>
> </init-param>
> </servlet>
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)