Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
SPR-10697
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jun 27, 2013
1 parent 06bbb48 commit e3588bf
Show file tree
Hide file tree
Showing 12 changed files with 603 additions and 0 deletions.
226 changes: 226 additions & 0 deletions SPR-10697/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.issues</groupId>
<artifactId>SPR-10697</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Spring MVC Issue Reproduction Project</name>
<packaging>war</packaging>

<properties>
<java-version>1.6</java-version>
<org.springframework-version>3.2.2.BUILD-SNAPSHOT</org.springframework-version>
<org.slf4j-version>1.6.1</org.slf4j-version>
</properties>

<dependencies>
<!-- Spring Framework -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${org.springframework-version}</version>
<exclusions>
<!-- Exclude Commons Logging in favor of SLF4j -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${org.springframework-version}</version>
</dependency>

<!-- CGLIB, required for @Configuration usage -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2</version>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${org.slf4j-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${org.slf4j-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>runtime</scope>
</dependency>

<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>

<!-- JSP API and JSTL -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>

<!-- Apache Tiles
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-jsp</artifactId>
<version>2.1.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
</exclusion>
</exclusions>
</dependency>
-->

<!-- JSR 303 with Hibernate Validator
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.1.0.Final</version>
</dependency>
-->

<!-- Joda Time Library
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time-jsptags</artifactId>
<version>1.0.2</version>
<scope>runtime</scope>
</dependency>
-->

<!-- Apache Commons File Upload
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version>
</dependency>
-->

<!-- Jackson JSON Processor
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.8.1</version>
</dependency>
-->

<!-- Rome Atom+RSS
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>1.0</version>
</dependency>
-->

<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8</version>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>spring-maven-snapshot</id>
<name>Springframework Maven Snapshot Repository</name>
<url>http://repo.springsource.org/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>install</id>
<phase>install</phase>
<goals>
<goal>sources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
<excludes>
<exclude>**/*Abstract*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

</project>

Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
package org.springframework.issues;

import java.io.*;
import java.util.*;

public class SoftwareNameVO implements Serializable {

private int id;
private boolean someBoolean;
private String name;
private List<SoftwareVersionVO> versions = new ArrayList<SoftwareVersionVO>();

public SoftwareNameVO() {
}

public SoftwareNameVO(int id, boolean someBoolean) {
this.id = id;
this.someBoolean = someBoolean;
}

public SoftwareNameVO(int id, String name) {
this();
this.id = id;
this.name = name;
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public boolean isSomeBoolean() {
return someBoolean;
}

public void setSomeBoolean(boolean someBoolean) {
this.someBoolean = someBoolean;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public List<SoftwareVersionVO> getVersions() {
return versions;
}

public void setVersions(List<SoftwareVersionVO> versions) {
this.versions = versions;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package org.springframework.issues;

import java.io.*;
import java.util.*;

public class SoftwareVendorVO implements Serializable {

private int id;
private String name;
private List<SoftwareNameVO> software = new ArrayList<SoftwareNameVO>();
private SoftwareNameVO newSoftwareNameToAdd = new SoftwareNameVO();

public SoftwareVendorVO() {
}

public SoftwareVendorVO(int id) {
this.id = id;
}

public SoftwareVendorVO(int id, String name) {
this.id = id;
this.name = name;
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public List<SoftwareNameVO> getSoftware() {
return software;
}

public void setSoftware(List<SoftwareNameVO> software) {
this.software = software;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public SoftwareNameVO getNewSoftwareNameToAdd() {
return newSoftwareNameToAdd;
}

public void setNewSoftwareNameToAdd(SoftwareNameVO newSoftwareNameToAdd) {
this.newSoftwareNameToAdd = newSoftwareNameToAdd;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
package org.springframework.issues;

import java.io.Serializable;

public class SoftwareVersionVO implements Serializable {
private int id;
private String name;
private boolean participation;
private boolean active;

public SoftwareVersionVO() {
super();
}

public SoftwareVersionVO (int id, String name, boolean active,boolean participation) {
setId(id);
setName(name);
setParticipation(participation);
setActive(active);
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public boolean isParticipation() {
return participation;
}

public void setParticipation(boolean participation) {
this.participation = participation;
}

public boolean isActive() {
return active;
}

public void setActive(boolean active) {
this.active = active;
}
}
Loading

0 comments on commit e3588bf

Please sign in to comment.