Go on on on and on...


  • Home

  • Categories

  • Tags

  • Archives

  • Message

  • About

  • Search

实践Thymeleaf

Posted on 2018-11-19 | In Java | Visitors

Thymeleaf is a modern server-side Java template engine for both web and standalone environments.

Read more »

实践maven-surefire-report-plugin

Posted on 2018-11-13 | In 工具 | Visitors

Maven Surefire Report Plugin parses the generated TEST-*.xml files under ${basedir}/target/surefire-reports and renders them using DOXIA, which creates the web interface version of the test results.

Read more »

实践maven-antrun-extended-plugin

Posted on 2018-11-13 | In 工具 | Visitors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!-- 用mvn ant生成格式更友好的report -->  
            <plugin>  
                <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>  
                <artifactId>maven-antrun-extended-plugin</artifactId>
                <version>1.43</version>
                <executions>  
                    <execution>  
                        <id>test-reports</id>  
                        <phase>test</phase>
                        <configuration>  
                            <tasks>  
                                <junitreport todir="${basedir}/target/surefire-reports">  
                                    <fileset dir="${basedir}/target/surefire-reports">  
                                        <include name="**/*.xml" />  
                                    </fileset>  
                                    <report format="frames" todir="${basedir}/target/surefire-reports" />
                                </junitreport>  
                            </tasks>  
                        </configuration>  
                        <goals>  
                            <goal>run</goal>  
                        </goals>  
                    </execution>  
                </executions>  
                <dependencies>  
                    <dependency>  
                        <groupId>org.apache.ant</groupId>  
                        <artifactId>ant-junit</artifactId>  
                        <version>1.8.0</version>  
                    </dependency>  
                    <dependency>  
                        <groupId>org.apache.ant</groupId>  
                        <artifactId>ant-trax</artifactId>  
                        <version>1.8.0</version>  
                    </dependency>  
                </dependencies>  
            </plugin>
Read more »

实践BeetlSQL

Posted on 2018-11-12 | In Java | Visitors

BeetlSQL是一个全功能DAO工具, 同时具有Hibernate 优点 & Mybatis优点功能,适用于承认以SQL为中心,同时又需求工具能自动能生成大量常用的SQL的应用。

Read more »

实践Beetl

Posted on 2018-11-12 | In Java | Visitors

Beetl是Bee Template Language的缩写,它绝不是简单的另外一种模板引擎,而是新一代的模板引擎,它功能强大,性能良好,超过当前流行的模板引擎。而且还易学易用。

Read more »

实践SSL

Posted on 2018-11-08 | In 网络 | Visitors

SSL/TLS协议运行机制的概述

Read more »

实践JWT

Posted on 2018-11-08 | In design | Visitors

JSON Web Token(缩写 JWT)是目前最流行的跨域认证解决方案。有如下特点:

Read more »

实践OAuth

Posted on 2018-11-08 | In 综合 | Visitors

理解OAuth 2.0

Read more »

实践apt

Posted on 2018-11-07 | In OS | Visitors

apt(apt-get)

Read more »

实践代码检查之SpotBugs

Posted on 2018-11-06 | In 测试 | Visitors

SpotBugs is a program which uses static analysis to look for bugs in Java code. It is free software, distributed under the terms of the GNU Lesser General Public License.

Read more »
1 … 70 71 72 … 113
Ray Wang

Ray Wang

My Blog

1123 posts
29 categories
RSS
© 2025 Ray Wang
Powered by Jekyll
Theme - NexT.Muse