Aktualisierungen August, 2018 Kommentarverlauf ein-/ausschalten | Tastaturkürzel

  • Andreas Höhmann 19:38 am Thursday, 23. August 2018 Permalink |
    Tags:   

    Little discussion at work about visibility of embedded classes … I think I was right 😉

     
    • markiewb 21:11 am Dienstag, 22. Januar 2019 Permalink | Zum Antworten anmelden

      Meld dich bitte mit deiner neuen Nummer bei mir. Die Nummer duerftest du noch haben. Ich wollte dir zum Geburtstag gratulieren, aber da war die Nummer nicht mehr vergeben. VG

      • Andreas Höhmann 20:43 am Sonntag, 27. Januar 2019 Permalink | Zum Antworten anmelden

        Hi Benno 😀 Meine Nummer ist immer noch die selbe … hab aber mein Handy zu 99% gar nicht an 😀 Ich bin aber quasi den ganzen Tag online 🙂 Mal wieder auf ein Bierchen??? Ciao Höhmi

  • Andreas Höhmann 7:52 am Tuesday, 25. April 2017 Permalink |  

    Repair Eclipse Workbench UI :) 

    Sometime (after a Eclipse crash) I have this annoying multiple Mylyn Task-Selection-Control in the Trimbar…

    eclipse_trimbar_multiple_mylyn.png

    (mehr …)

     
  • Andreas Höhmann 14:25 am Wednesday, 25. September 2013 Permalink |  

    SuperCsvIterator 

    This week I created this iterator to read data from an csv file and return a list of beans. Maybe useful for other 🙂

    import java.io.IOException;
    import java.io.Reader;
    import java.util.Arrays;
    import java.util.Iterator;
    
    import javax.annotation.Nullable;
    
    import org.supercsv.cellprocessor.ift.CellProcessor;
    import org.supercsv.io.CsvBeanReader;
    import org.supercsv.prefs.CsvPreference;
    
    import com.google.common.base.Function;
    import com.google.common.collect.AbstractIterator;
    import com.google.common.collect.FluentIterable;
    import com.google.common.collect.ImmutableList;
    import com.google.common.io.Closeables;
    
    /**
     * @author Andreas Höhmann
     */
    public class SuperCsvIterator<T> extends AbstractIterator<T>
    {
       public static <T> ImmutableList<T> toList(final CsvBeanReader beanReader,
                                                 final Class<T> beanClass,
                                                 final CellProcessor[] cellProcessors ) throws IOException  {
    
           return new FluentIterable<T>() {
    
             @Override
             public Iterator<T> iterator() {
                return new CsvIterator<T>( beanClass, beanReader, cellProcessors );
             }
           }.toList();
       }
    
       public static <T> ImmutableList<T> toList(final Reader reader,
                                                 final Class<T> beanClass,
                                                 final CsvPreference csvPreference,
                                                 final CellProcessor[] cellProcessors ) throws IOException {
    
         final CsvBeanReader beanReader = new CsvBeanReader( reader, CsvPreference.STANDARD_PREFERENCE );
         try {
            return toList( beanReader, beanClass, cellProcessors );
         }
         finally {
           Closeables.close( beanReader, false );
         }
       }
    
       private static String[] trimHeaders( final String[] headers ) {
         return FluentIterable.from( Arrays.asList( headers ) ).transform( new Function<String, String>() {
    
             @Override
             @Nullable
             public String apply( @Nullable final String input )  {
               if ( input == null )
                 return null;
               return input.trim();
             }
           } ).toArray( String.class );
       }
    
       private final Class<T> beanClass;
       private final CsvBeanReader beanReader;
       private final CellProcessor[] cellProcessors;
       private final String[] headers;
    
       public SuperCsvIterator(final Class<T> beanClass,
                          final CsvBeanReader beanReader,
                          final CellProcessor[] cellProcessors ) throws IOException {
          this.beanClass = beanClass;
          this.beanReader = beanReader;
          this.cellProcessors = Arrays.copyOf( cellProcessors, cellProcessors.length );
          this.headers = trimHeaders( beanReader.getHeader( true ) );
       }
    
       @Override
       protected T computeNext() 	{
         try {
           final T result = beanReader.read( beanClass, headers, cellProcessors );
           if ( result == null ) {
             return endOfData();
           }
           return result;
         }
         catch ( final IOException e ) {
            throw new RuntimeException( "Can't compute next csv bean element", e );
         }
      }
    }
    

     

    public final class FooCsvBean {
    
       public static final String[] HEADER = new String[] { "Name", "Age", "Bar", };
       public static final CellProcessor[] CELLPROCESSOR = new CellProcessor[] { null, // Name
                                                                                 null, // Age
                                                                                 null, // Bar
                                                                               };
    
       private String name, age, bar;
    
       // Setter + Getter
    }
    
    final ImmutableList<FooCsvBean> foos = SuperCsvIterator.toList(new FileReader( fooCsvFile ),
                                                            FooCsvBean.class,
                                                            CsvPreference.STANDARD_PREFERENCE,
                                                            FooCsvBean.CELLPROCESSOR );
    
     
  • Andreas Höhmann 0:53 am Tuesday, 16. July 2013 Permalink |
    Tags: Neo4j,   

    Lets play with neo4j 

    Der „Leipziger Firmenlauf 2013“ ist nun auch langsam Geschichte. Doch als ich heute nochmals durch die Ergebnisse stöberte, kam ich auf die Idee die Daten doch einfach mal in eine „NoSQL“ Datenbank, in meinem Fall jetzt mal Neo4j, zu importieren.

    Also gesagt getan, das Besorgen der Daten ist ein Kinderspiel. Die Homepage liefert alle gewünschten Datensätze per JSON, im Chrome die „CURL“ kopieren, auf Kommandozeile ausführen, in eine Datei umleiten … fertig 🙂

    $ curl 'http://results.davengo.com/query' -H 'Origin: http://results.davengo.com' -H 'Accept-Encoding: gzip,deflate,sdch' -H 'Host: results.davengo.com' -H 'Accept-Language: en,de;q=0.8
    ,en-US;q=0.6' -H 'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36' -H 'Content-Type: application/json' -H 
    'Accept: */*' -H 'Referer: http://results.davengo.com/?event=50d426afb8ed1d2318282f54' -H 'Cookie: __utma=9661994.565730006.1373516179.1373516179.1373909845.2; __utmb=9661994.2.10.1373909845; 
    __utmc=9661994; __utmz=9661994.1373909845.2.2.utmcsr=leipzig-firmenlauf.de|utmccn=(referral)|utmcmd=referral|utmcct=/ergebnisse2013.html; 
    __utma=268406157.662336661.1373516307.1373516307.1373909929.2; __utmb=268406157.1.10.1373909929; __utmc=268406157; __utmz=268406157.1373516307.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 
    projekktorplayercontrolbar_volume=0.5' -H 'Connection: keep-alive' --data-binary '{"key":"50d426afb8ed1d2318282f54", "offset":0, "limit":100000, "where":{"categoryName":"Einzelwertung"}, "order":
    {"firma":"ASC"}, "category":"Einzelwertung"}' --compressed &gt; results_2013.json
    

    Jetzt kommt der „schwierige“ Part, JSON parsen und via Spring Data Neo4j in eine Neo4j Datenbank einfügen.

    <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/xsd/maven-4.0.0.xsd">
    	<modelVersion>4.0.0</modelVersion>
    	<groupId>com.mymita.tools</groupId>
    	<artifactId>firmenlauf2013</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    	<dependencies>
    		<dependency>
    			<groupId>org.codehaus.jackson</groupId>
    			<artifactId>jackson-mapper-asl</artifactId>
    			<version>1.9.12</version>
    		</dependency>
    		<dependency>
    			<groupId>org.springframework.data</groupId>
    			<artifactId>spring-data-neo4j</artifactId>
    			<version>2.2.1.RELEASE</version>
    		</dependency>
    		<dependency>
    			<groupId>org.projectlombok</groupId>
    			<artifactId>lombok</artifactId>
    			<version>0.11.8</version>
    		</dependency>
    		<dependency>
    			<groupId>com.google.guava</groupId>
    			<artifactId>guava</artifactId>
    			<version>14.0.1</version>
    		</dependency>
    		<dependency>
    			<groupId>cglib</groupId>
    			<artifactId>cglib</artifactId>
    			<version>2.2.2</version>
    		</dependency>
    		<dependency>
    			<groupId>javax.validation</groupId>
    			<artifactId>validation-api</artifactId>
    			<version>1.1.0.Final</version>
    		</dependency>
    		<dependency>
    			<groupId>ch.qos.logback</groupId>
    			<artifactId>logback-classic</artifactId>
    			<version>1.0.13</version>
    		</dependency>
    	</dependencies>
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-compiler-plugin</artifactId>
    				<version>3.1</version>
    				<configuration>
    					<source>1.7</source>
    					<target>1.7</target>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    </project>
    

    Der Importerservice

    package com.mymita.firmenlauf2013.service;
    
    import java.io.IOException;
    import java.util.Map;
    
    import lombok.AllArgsConstructor;
    import lombok.Getter;
    import lombok.Setter;
    import lombok.ToString;
    
    import org.codehaus.jackson.map.ObjectMapper;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.core.io.ClassPathResource;
    import org.springframework.data.neo4j.support.Neo4jTemplate;
    import org.springframework.stereotype.Service;
    import org.springframework.transaction.annotation.Transactional;
    
    import com.google.common.base.Objects;
    import com.google.common.collect.Maps;
    import com.mymita.firmenlauf2013.model.Company;
    import com.mymita.firmenlauf2013.model.Run;
    import com.mymita.firmenlauf2013.model.Runner;
    import com.mymita.firmenlauf2013.model.Team;
    
    @Service
    public class ImportService {
    
    	@Getter
    	@AllArgsConstructor
    	@ToString
    	public static class JsonRunner {
    
    		public JsonRunner(Object[] data) {
    			this((Integer) data[0], (Integer) data[1], (Integer) data[2],
    					(Integer) data[3], (String) data[4], (String) data[5],
    					(String) data[6], (String) data[7], (String) data[8],
    					(String) data[9], (String) data[10]);
    		}
    
    		Integer platz;
    		Integer platzMaennlich;
    		Integer platzWeiblich;
    		Integer nummer;
    		String vorname;
    		String nachname;
    		String team;
    		String zeit;
    		String firma;
    		String dummy;
    		String key;
    	}
    
    	@Getter
    	@Setter
    	public static class JsonRunners {
    		Object[][] items;
    	}
    
    	Logger logger = LoggerFactory.getLogger(getClass());
    
    	@Autowired
    	private Neo4jTemplate template;
    
    	private final Map<String, Company> companies = Maps.newHashMap();
    	private final Map<String, Team> teams = Maps.newHashMap();
    	private final Map<Integer, Runner> runners = Maps.newHashMap();
    	private final Map<String, Run> runs = Maps.newHashMap();
    
    	@Transactional
    	public void importData() {
    		try {
    			JsonRunners jsonRunners = new ObjectMapper().readValue(
    					new ClassPathResource("results.json").getInputStream(),
    					JsonRunners.class);
    			for (int i = 0; i < jsonRunners.items.length; i++) {
    				JsonRunner jsonRunner = new JsonRunner(jsonRunners.items[i]);
    				String teamName = jsonRunner.getTeam();
    				String companyName = jsonRunner.getFirma();
    				String time = jsonRunner.getZeit();
    				Company company = companies.get(companyName);
    				if (company == null) {
    					company = new Company(Objects.firstNonNull(companyName,
    							"NONAME"));
    					template.save(company);
    					companies.put(company.getName(), company);
    					logger.debug("Created company '{}'", company);
    				}
    				Team team = teams.get(teamName);
    				if (team == null) {
    					team = new Team(teamName).sponsoredBy(company);
    					template.save(team);
    					teams.put(team.getName(), team);
    					logger.debug("Created team '{}'", team);
    				}
    				Run run = runs.get(time);
    				if (run == null) {
    					run = new Run(time);
    					template.save(run);
    					runs.put(run.getTime(), run);
    					logger.debug("Created run '{}'", run);
    				}
    				Runner runner = new Runner(jsonRunner.getNummer(),
    						jsonRunner.getVorname(), jsonRunner.getNachname())
    						.fightFor(team).finished(run);
    				template.save(runner);
    				runners.put(runner.getNumber(), runner);
    				logger.debug("Created runner '{}'", runner);
    			}
    			for (Team t : teams.values()) {
    				template.save(t);
    				logger.debug("Updated team '{}'", t);
    			}
    			for (Run r : runs.values()) {
    				template.save(r);
    				logger.debug("Updated run '{}'", r);
    			}
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    	}
    }
    

    Der Spring Context

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
    	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
    	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    		                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
    		                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
    		                http://www.springframework.org/schema/data/neo4j http://www.springframework.org/schema/data/neo4j/spring-neo4j.xsd">
    	<neo4j:repositories base-package="com.mymita.firmenlauf2013" />
    	<neo4j:config graphDatabaseService="graphDatabaseService" />
    	<bean id="graphDatabaseService" class="org.neo4j.kernel.EmbeddedGraphDatabase"
    		destroy-method="shutdown">
    		<constructor-arg value="target/firmenlauf2013.db" />
    	</bean>
    	<context:annotation-config />
    	<context:component-scan base-package="com.mymita.firmenlauf2013" />
    	<tx:annotation-driven mode="proxy"
    		transaction-manager="transactionManager" />
    </beans>
    

    Und ein kleines Hauptprogramm um alles zu starten

    package com.mymita.firmenlauf2013.importer;
    
    import java.io.File;
    import java.io.IOException;
    
    import org.neo4j.kernel.impl.util.FileUtils;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    import com.mymita.firmenlauf2013.service.ImportService;
    
    public class Importer {
    
    	public static void main(String[] args) throws IOException {
    		FileUtils.deleteRecursively(new File("target/firmenlauf2013.db"));
    		ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(
    				"classpath:application-context.xml");
    		try {
    			new Importer().importData(ctx);
    		} finally {
    			ctx.close();
    		}
    	}
    
    	private void importData(ClassPathXmlApplicationContext ctx) {
            ctx.getBean(ImportService.class).importData();
        }
    
    }
    

    Die NodeEntites sehen folgendermassen aus …

    package com.mymita.firmenlauf2013.model;
    
    import lombok.ToString;
    import org.springframework.data.neo4j.annotation.GraphId;
    
    @ToString
    public abstract class AbstractEntity {
    
    	@GraphId
    	private Long id;
    
    	public Long getId() {
    		return id;
    	}
    
    	@Override
    	public boolean equals(Object obj) {
    		if (this == obj) {
    			return true;
    		}
    		if (id == null || obj == null || !getClass().equals(obj.getClass())) {
    			return false;
    		}
    		return id.equals(((AbstractEntity) obj).id);
    	}
    
    	@Override
    	public int hashCode() {
    		return id == null ? 0 : id.hashCode();
    	}
    }
    

    Die Firma für die ein Team von Läufern startete

    package com.mymita.firmenlauf2013.model;
    import lombok.Getter;
    import lombok.NoArgsConstructor;
    import lombok.ToString;
    
    import org.springframework.data.annotation.TypeAlias;
    import org.springframework.data.neo4j.annotation.Indexed;
    import org.springframework.data.neo4j.annotation.NodeEntity;
    
    @Getter
    @NoArgsConstructor
    @ToString(callSuper=true)
    @NodeEntity
    @TypeAlias("Company")
    public class Company extends AbstractEntity {
    
        @Indexed(unique=true)
        private String name;
    
        public Company(String name) {
    		this.name = name;
    	}
    
    }
    

    Das Team von Läufern

    package com.mymita.firmenlauf2013.model;
    import java.util.Set;
    
    import lombok.Getter;
    import lombok.NoArgsConstructor;
    import lombok.ToString;
    
    import org.springframework.data.annotation.TypeAlias;
    import org.springframework.data.neo4j.annotation.Indexed;
    import org.springframework.data.neo4j.annotation.NodeEntity;
    import org.springframework.data.neo4j.annotation.RelatedTo;
    
    import com.google.common.collect.Sets;
    
    @Getter
    @NoArgsConstructor
    @ToString(callSuper=true, exclude={"runners"})
    @NodeEntity
    @TypeAlias("Team")
    public class Team extends AbstractEntity {
    
        @Indexed(unique=true)
        private String name;
        @RelatedTo(type="have")
        private Set<Runner> runners = Sets.newHashSet();
        @RelatedTo(type="sponsored_by")
        private Company company;
    
        public Team(String name) {
    		this.name = name;
    	}
    
        public Team sponsoredBy(Company company) {
        	this.company = company;
        	return this;
        }
    
        public Team have(Runner runner) {
        	runners.add(runner);
        	return this;
        }
    
    }
    

    Ein Läufer

    package com.mymita.firmenlauf2013.model;
    import lombok.Getter;
    import lombok.NoArgsConstructor;
    import lombok.ToString;
    
    import org.springframework.data.annotation.TypeAlias;
    import org.springframework.data.neo4j.annotation.Indexed;
    import org.springframework.data.neo4j.annotation.NodeEntity;
    import org.springframework.data.neo4j.annotation.RelatedTo;
    
    @Getter
    @NoArgsConstructor
    @ToString(callSuper=true, exclude={"run", "team"})
    @NodeEntity
    @TypeAlias("Runner")
    public class Runner extends AbstractEntity{
    
        @Indexed(numeric=true,unique=true)
        private Integer number;
        @Indexed
        private String firstName;
        @Indexed
        private String lastName;
        @RelatedTo(type="fight_for")
        private Team team;
        @RelatedTo(type="finished")
        private Run run;
    
        public Runner(Integer number, String firstName, String lastName) {
    		this.number = number;
    		this.firstName = firstName;
    		this.lastName = lastName;
        }
    
        public Runner fightFor(Team team) {
        	this.team=team;
        	team.have(this);
        	return this;
        }
    
        public Runner finished(Run run) {
        	this.run=run;
        	run.finishedBy(this);
        	return this;
        }
    
    }
    

    Und das Ergebnis eines Laufs

    package com.mymita.firmenlauf2013.model;
    import java.util.Set;
    
    import lombok.Getter;
    import lombok.NoArgsConstructor;
    import lombok.ToString;
    
    import org.springframework.data.annotation.TypeAlias;
    import org.springframework.data.neo4j.annotation.NodeEntity;
    import org.springframework.data.neo4j.annotation.RelatedTo;
    
    import com.google.common.collect.Sets;
    
    @Getter
    @NoArgsConstructor
    @ToString(callSuper=true, exclude={"runners"})
    @NodeEntity
    @TypeAlias("Run")
    public class Run extends AbstractEntity{
    
    	private String time;
    
    	@RelatedTo(type="finished_by")
    	private Set<Runner> runners = Sets.newHashSet();
    
        public Run(String time) {
    		this.time = time;
        }
    
    	public Run finishedBy(Runner runner) {
    		runners.add(runner);
    		return this;
    	}
    }
    

    Ergebnis der ganze Mühen ist ein Verzeichnis im target Ordner des Mavenprojekts, dessen Inhalt in einen Neo4j-Server (http://www.neo4j.org/download) kopiert wird. Ist der Server hochgefahren, kann man unter http://localhost:7474 das Ergebnis bestaunen 🙂

    Eine kleine Abfrage bringt dann auch alle meine lieben Kollegen vom „Running suckz“ Team zum Vorschein

    neo4j_firmenlauf2013

     
  • Andreas Höhmann 22:47 am Thursday, 27. June 2013 Permalink |
    Tags: , memcached, , tinkerpop   

    Quick Maven Workaround 

    Currently I want run https://github.com/jamesward/hello-java-spring-neo4j

    $ mvn -version
    Apache Maven 3.1.0-alpha-1 (c726cdd3a9ad5c3a419e1171f8c1925e336ead18; 2013-06-01 15:03:28+0200)
    Maven home: C:\Development\apache-maven-3.1.0-alpha-1
    Java version: 1.7.0_09, vendor: Oracle Corporation
    Java home: C:\Program Files\Java\jdk1.7.0_09\jre
    Default locale: de_DE, platform encoding: Cp1252
    OS name: „windows 7“, version: „6.1“, arch: „amd64“, family: „windows“

    Unfortunately I got some strange error like „access denied“ for tinkerpop (I never heard about this maven repository until now) and slowwwww connection to memcache repo at googlecode (svn) … so here is a „workaround“ for that …

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    	<mirrors>
    		<mirror>
    			<id>tinkerpop</id>
    			<name>tinkerpop</name>
    			<url>http://repo.maven.apache.org/maven2</url>
    			<mirrorOf>tinkerpop-repository</mirrorOf>
    		</mirror>
    		<mirror>
    			<id>msm</id>
    			<name>msm</name>
    			<url>http://repo.maven.apache.org/maven2</url>
    			<mirrorOf>msm</mirrorOf>
    		</mirror>
    	</mirrors>
    </settings>
    
     
  • Andreas Höhmann 22:49 am Tuesday, 4. September 2012 Permalink |
    Tags: , vaadlets   

    Fluent API for Vaadlets 

    I added support for Fluent API into https://github.com/ahoehma/vaadlets.

    Now you can do this:

    VaadletsBuilder.build(
    new Vaadlets().withRootComponent(
        new VerticalLayout()
            .withHeight("100px")
            .withWidth("100px")
            .withStyleName("foobar")
            .withComponents(
                    new Button().withCaption("hustensaft")
                                .withAlignment(Alignment.MIDDLE_CENTER)
                                .withExpandRatio(1f))));
    
     
  • Andreas Höhmann 15:21 am Thursday, 26. April 2012 Permalink |
    Tags: GWT, , ,   

    Use maven profile to recompile vaadin widgetset #2 

    In a older post I describe my solution to handle VAADIN/GWT widgetset compilation with maven.

    Today I  will share some changes to use GWT 2.4 with my solution.

    The problem: after GWT compilation a new directory gwt-unitCache exists under the VAADIN directory. I don’t need this 😉

    I integrate this workaround in my profile:

    <profile>
      <!-- Updates Vaadin widgetset definitions based on project dependencies -->
      <id>update-widgetset</id>
      <activation>
        <file>
          <missing>${basedir}/src/main/webapp/VAADIN/widgetsets/</missing>
        </file>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-maven-plugin</artifactId>
            <version>1.0.2</version>
            <executions>
              <execution>
                <phase>generate-resources</phase>
                <goals>
                  <goal>update-widgetset</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>2.4.0</version>
            <configuration>
              <webappDirectory>${basedir}/src/main/webapp/VAADIN/widgetsets/</webappDirectory>
              <extraJvmArgs>-Xmx512M -Xss1024k </extraJvmArgs>
              <deploy>${project.build.directory}/gwt-tmp/</deploy>
              <soyc>false</soyc>
              <force>true</force>
              <strict>true</strict>
              <style>OBFUSCATED</style>
              <optimizationLevel>9</optimizationLevel>
            </configuration>
            <executions>
              <execution>
                <phase>generate-resources</phase>
                <goals>
                  <goal>resources</goal>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <!-- workaround for 
                 http://code.google.com/p/google-web-toolkit/issues/detail?id=6397 -->
            <artifactId>maven-clean-plugin</artifactId>
            <version>2.4.1</version>
            <configuration>
              <filesets>
                <fileset>
                  <directory>${basedir}/src/main/webapp/VAADIN/</directory>
                  <includes>
                    <directory>gwt-unitCache/**</directory>
                  </includes>
                  <followSymlinks>false</followSymlinks>
                </fileset>
              </filesets>
              <excludeDefaultDirectories>true</excludeDefaultDirectories>
            </configuration>
            <executions>
              <execution>
                <id>default</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>clean</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
    

    🙂

     
  • Andreas Höhmann 0:10 am Monday, 23. January 2012 Permalink |
    Tags: , github,   

    jmonkey maven support next round 

    jmonkey have no maven support … here is my solution 🙂

    1. clone jme3-thirdparty from git, mvn install … done
    2. clone jme3-buildhelper, copy pom.xml into jmonkey-engine … done
    3. start hacking your jmonkey game with maven build support 🙂

    https://github.com/ahoehma/jme3-maven-helper

     
  • Andreas Höhmann 10:38 am Thursday, 19. January 2012 Permalink |
    Tags: ,   

    Good to know this Hibernate Envers API changes 

    Today I tried to update the hibernate version for an internal customer project from 3.6.0.Final to 3.6.9.Final. In the project we are using Envers to track entity revisions. I already posted about that here.

    I noticed that some tests broken with the new version. These tests doing something like this: „create a bean, do changes X times, check available revisions and changed properties from rev A to B“.  In the new version I missed some changed properties.  I’m so happy that we have some tests for that aspect because without them I guess I had found these effects.

    I found  this entries in the Envers user forum:

    – Envers not auditing properties in super class
    – Envers modification in Hibernate 3.6.8 is causing problems

    Then I use the „try and fail“ principle to find the latest working version: ONLY 3.6.0.Final works 😀

    So there was an API change from 3.6.0.Final to 3.6.1.Final. Since 3.6.1.Final Envers doesn’t inspect parent class (es) per default to find out the audit able properties. But it’s easy to fix that:

    • put a @Audited to all the base classes
    • or use org.hibernate.envers.Audited.auditParents() (if you can’t change the base class)

    🙂

     
  • Andreas Höhmann 9:43 am Thursday, 15. December 2011 Permalink |
    Tags: ,   

    Use maven profile to recompile vaadin widgetset 

    Today I will show you my maven profile to configure Vaadin widgetset recompilation.

    The Vaadin wiki shows the basics … but I want widgetset update only if its necessary … so I moved the gwt/vaadin plugins in a profile and add a activation per file for this profile:

    <profile>
       <!--
         Updates Vaadin widgetset definitions based on project dependencies
         Remove widgetset directory to trigger recompile:
           rm -Rf src/main/webapp/VAADIN/widgetsets/
       -->
       <id>update-widgetset</id>
       <activation>
         <file>
           ${basedir}/src/main/webapp/VAADIN/widgetsets/
         </file>
       </activation>
       <build>
         <plugins>
           <plugin>
             <groupId>com.vaadin</groupId>
             <artifactId>vaadin-maven-plugin</artifactId>
             <version>1.0.2</version>
             <configuration>
               <!-- if you don't specify any modules, the plugin will find them -->
             </configuration>
             <executions>
               <execution>
                 <phase>generate-resources</phase>
                 <goals>
                   <goal>update-widgetset</goal>
                 </goals>
               </execution>
             </executions>
           </plugin>
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>gwt-maven-plugin</artifactId>
             <version>2.3.0-1</version>
             <configuration>
               <!-- if you don't specify any modules, the plugin will find them -->
               ${basedir}/src/main/webapp/VAADIN/widgetsets/
               -Xmx512M -Xss1024k
               ${project.build.directory}/gwt-tmp/
               <soyc>false</soyc>
               <force>true</force>
             </configuration>
             <executions>
               <execution>
                 <phase>generate-resources</phase>
                 <goals>
                   <goal>resources</goal>
                   <goal>compile</goal>
                 </goals>
               </execution>
             </executions>
           </plugin>
         </plugins>
       </build>
     </profile>

    🙂

     
c
Neuen Beitrag erstellen
j
nächster Beitrag/nächster Kommentar
k
vorheriger Beitrag/vorheriger Kommentar
r
Antworten
e
Bearbeiten
o
zeige/verstecke Kommentare
t
Zum Anfang gehen
l
zum Login
h
Zeige/Verberge Hilfe
Shift + ESC
Abbrechen