Dependent on configuration

Creative Commons License Copyright: Attribution, allow others to create paper-based, and must distribute paper (based on the original license agreement with the same license Creative Commons )

 

table of Contents

Maven: (Properties configuration added)

jdk compiled plug-in

serelet (three):

Lombok (get, set, no-argument constructor):

tomcat (Deployment Services):

web.xml (by default page):


Maven: (Properties configuration added)

Improve the loading speed maven

archetypeCatalog=internal

jdk compiled plug-in

<!-- java编译插件 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>

serelet (three):

<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
   <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.0</version>
    <scope>provided</scope>
</dependency>

Lombok (get, set, no-argument constructor):

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.16.0</version>
    <scope>provided</scope>
</dependency>

tomcat (Deployment Services):

<plugin>
	<groupId>org.apache.tomcat.maven</groupId>
	<artifactId>tomcat7-maven-plugin</artifactId>
	<version>2.2</version>
	<configuration>
	    <path>/aaa</path>
	    <port>8888</port>
	</configuration>
</plugin>

web.xml (by default page):

<welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

 

Guess you like

Origin blog.csdn.net/longyanchen/article/details/93735011