You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2012/06/01 14:59:24 UTC

[jira] [Comment Edited] (WW-3834) struts.oval.validateJPAAnnotations is never set after the constant is set to true in struts.xml

    [ https://issues.apache.org/jira/browse/WW-3834?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13287367#comment-13287367 ] 

Lukasz Lenart edited comment on WW-3834 at 6/1/12 12:58 PM:
------------------------------------------------------------

Here [1] you have all of them, -all should be sufficient or you can use snapshot repo [2] if you're using Maven, just add below snippet to your pom.xml

{code:xml}

    <repositories>
        <repository>
            <id>asf-snapshots</id>
            <name>ASF Snapshots repo</name>
            <url>https://repository.apache.org/content/groups/snapshots/</url>
            <layout>default</layout>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    <repositories>

{code}

[1] https://builds.apache.org/job/Struts2/487/org.apache.struts$struts2-assembly/
[2] https://repository.apache.org/content/groups/snapshots
                
      was (Author: lukaszlenart):
    Here [1] you have all of them, -all should be sufficient or you can snapshot repo [2] if you're using Maven, just add

{code:xml}

    <repositories>
        <repository>
            <id>asf-snapshots</id>
            <name>ASF Snapshots repo</name>
            <url>https://repository.apache.org/content/groups/snapshots/</url>
            <layout>default</layout>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    <repositories>

{code}

[1] https://builds.apache.org/job/Struts2/487/org.apache.struts$struts2-assembly/
[2] https://repository.apache.org/content/groups/snapshots
                  
> struts.oval.validateJPAAnnotations is never set after the constant is set to true in struts.xml
> -----------------------------------------------------------------------------------------------
>
>                 Key: WW-3834
>                 URL: https://issues.apache.org/jira/browse/WW-3834
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - CDI, Plugin - OVal
>    Affects Versions: 2.3.4
>         Environment: Ubuntu 12.0, Glassfish, mysql 5.0
>            Reporter: Lukman
>            Assignee: Lukasz Lenart
>             Fix For: 2.3.5
>
>         Attachments: strutscdi.zip
>
>
> I have my struts.xml as follows 
> {code:xml}
> <struts>
>     <constant name="struts.devMode" value="true"/>
>     <constant name="struts.oval.validateJPAAnnotations" value="true" />
>     
>     <package name="xxx" namespace="/xxx" extends="oval-default" >
>         
>         <default-action-ref name="allModels" />
>         <action name="allModels" class="com.bfs.action.ModelAction" method="findAll">
>             <result name="success">/model/models.jsp</result>
>         </action>
>         <action name="SetUpModel" method="setUpModel"  class="com.bfs.action.ModelAction">
>             <result name="success">/model/newmodel.jsp</result>
>         </action>
>         <action name="viewModel" method="findByModelid" class="com.bfs.action.ModelAction" >
>             <result name="success" >/model/viewmodel.jsp</result>
>         </action>
>         <action name="*Model" class="com.bfs.action.ModelAction" method="{1}">
>             <interceptor-ref name="ovalValidationStack"/>
>             <result name="input">/model/newmodel.jsp</result>
>             <result type="redirectAction" name="success">allModels</result>
>         </action>
>     </package>
> </struts>
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira