Giter Site home page Giter Site logo

terasoluna-gfw-web-blank's People

Contributors

btdaruwanib avatar btideues avatar btiwahorisu avatar btkatagiriyu avatar btkatoufm avatar btkatoutmj avatar btkobayashirun avatar btnoguchimnm avatar btofuneyak avatar btonokit avatar btootomoyuk avatar btryuushou avatar btsatouhrzzp avatar btsatoutkzy avatar btshimizukza avatar bttakehirah avatar bttanakagn avatar bttanakaysd avatar bttsuchikawaf avatar bturamatuyu avatar btyanagawamg avatar ikeyat avatar itouyun avatar iwanagah avatar kazuki43zoo avatar kumagaikzk avatar making avatar makits avatar sasakitsy avatar yoshikawaa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

terasoluna-gfw-web-blank's Issues

Outputted a WARN log of Dozer, When started with default settings.

outputted log is following:

date:2013-10-14 00:26:14 thread:ContainerBackgroundProcessor[StandardEngine[Catalina]] X-Track: level:WARN logger:org.dozer.config.GlobalSettings message:Dozer configuration file not found: dozer.properties. Using defaults for all Dozer global properties.

Way to resolve this behavior is 2 ways.

  1. put a empty properties file (dozer.properties) in the directly under classpath.
  2. disable the WARN log of 'org.dozer.config.GlobalSettings'.

Maybe, Good choice is (1).

Default typemismatch message is required

Default typemismatch message is required in application-messages.properties like following

# typemismatch
typeMismatch="{0}" is invalid.
typeMismatch.int="{0}" must be an integer.
typeMismatch.double="{0}" must be an double.
typeMismatch.float="{0}" must be an float.
typeMismatch.long="{0}" must be an long.
typeMismatch.short="{0}" must be an short.
typeMismatch.java.lang.Integer="{0}" must be an integer.
typeMismatch.java.lang.Double="{0}" must be an double.
typeMismatch.java.lang.Float="{0}" must be an float.
typeMismatch.java.lang.Long="{0}" must be an long.
typeMismatch.java.lang.Short="{0}" must be an short.
typeMismatch.java.util.Date="{0}" is not a date.

ResultMessagesLoggingInterceptor does not define in domain.xml (JAP & MyBatis)

In blank project for JPA & MyBatis, does not define resultMessagesLoggingInterceptor & AOP setting.

Need the following setting in domain.xml of JPA & MyBatis.

    <bean id="resultMessagesLoggingInterceptor"
        class="org.terasoluna.gfw.common.exception.ResultMessagesLoggingInterceptor">
        <property name="exceptionLogger" ref="exceptionLogger" />
    </bean>
    <aop:config>
        <aop:advisor advice-ref="resultMessagesLoggingInterceptor"
            pointcut="@within(org.springframework.stereotype.Service)" />
    </aop:config>

logback.xml is different between terasoluna-gfw-web-multi-blank and terasoluna-gfw-web-blank

There is three differences.

Probably, terasoluna-gfw-web-multi-blank is correct.

1
(terasoluna-gfw-web-multi-blank)

<?xml version="1.0" encoding="UTF-8"?>

(terasoluna-gfw-web-blank)

<!DOCTYPE logback>

2
(terasoluna-gfw-web-multi-blank)

    <logger name="org.terasoluna.gfw">
        <level value="info" />
    </logger>

(terasoluna-gfw-web-blank)

    <logger name="org.terasoluna.gfw">
        <level value="debug" />
    </logger>

3
(terasoluna-gfw-web-multi-blank)

    <!-- only for development -->
    <logger name="jdbc.resultsettable">
        <level value="debug" />
    </logger>

(terasoluna-gfw-web-blank)
nothing

Fixed Versions

  • 5.0.1
  • 5.1.0

Tomcat version is old(only 1.0.x)

Description

Tomcat version for terasoluna-gfw-web-blank is old

  • terasoluna-gfw-web-blank
<groupId>org.apache.tomcat</groupId>
<version>7.0.40</version>
  • terasoluna-gfw-web-multi-blank
<tomcat.api.version>7.0.53</tomcat.api.version>

Possible Solutions

terasoluna-gfw-web-blank need to update for 7.0.53

Affects Version/s

  • 1.0.2.RELEASE

Fix Version/s

  • 1.0.3

Issue Links

Add <relativePath /> in pom.xm

Probably, <relativePath /> is needed to avoid trouble with STS's initial import.

<parent>
    <groupId>org.terasoluna.gfw</groupId>
    <artifactId>terasoluna-gfw-parent</artifactId>
    <version>1.1.0-SNAPSHOT</version>
    <relativePath /> 
</parent>

Remove unnecessary comment in web.xml

Description

In web.xml, an unnecessary comment(<!-- (1) -->) exist.

<?xml version="1.0" encoding="UTF-8"?>
<!-- (1) --> <!-- ### here ### -->
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
    <!-- ... -->
</web-app>

Possible Solutions

Remove an unnecessary comment.

Affects Version/s

  • 5.0.0.RELEASE
  • 1.0.2.RELEASE

Fix Version/s

  • 5.1.0.RELEASE
  • 5.0.1.RELEASE

Issue Links

None

sed parameter in create-maven-archetype-xxx.sh is wrong at 1.0.x branch

for example

bad:

sed -i -e "s/<description>Blank project using TERASOLUNA Global Framework/<description>Blank project using TERASOLUNA Global Framework (JPA)/g" pom.xml

good:

sed -i -e "s/<description>Web Blank Project using TERASOLUNA Global Framework/<description>Web Blank Project using TERASOLUNA Global Framework (JPA)/g" pom.xml
sed -i -e "s/Web Blank Project/Web Blank Project (JPA)/g" pom.xml

is also OK

Support travis-ci

Description

Possible Solutions

Affects Version/s

Fix Version/s

  • 5.1.0
  • 5.0.2
  • 1.0.4

Issue Links

Nothing

Create a sample of test cases

Create a sample of test case of unit test.

By utilizing the blank project, is easier that test case samples exists when creating a project.

Ignore IDEA project file

Description

Add IDEA project file in .gitignore.

Possible Solutions

Affects Version/s

  • 5.0.0.RELEASE - 5.0.1.RELEASE
  • 1.0.0.RELEASE - 1.0.3.RELEASE

Fix Version/s

  • 5.1.0
  • 5.0.2
  • 1.0.4

Issue Links

Nothing

typo version

should be 1.1.0-SNAPSHOT
now:1.1.0-BUILD-SNAPSHOT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.