Create a Web project "Go" using maven

Source: Internet
Author: User

1, first create a new MAVEN project, look at the picture:

2, follow the above steps can create a MAVEN project, you can see the most directory structure, but such a directory structure is wrong, need to make some changes.

First in order to avoid garbled, we should change the project code to UTF-8, after the project code is used UTF-8, add a character encoding filter, garbled no longer "chaotic" (not to say no, but easier to solve).

Again, follow the operation with the solution (set JRE as the default), so that the complete and correct directory structure will appear, for what reason, I am not very clear, should be a bug:

Finally, there is a index.jsp error, we need to introduce the Java EE jar package. Introduced in Pom.xml:

[HTML]View PlainCopy
  1. <!--import Java EE jar Package--
  2. <dependency>
  3. <groupId>javax</groupId>
  4. <artifactid>javaee-api</artifactid>
  5. <version>7.0</version>
  6. </Dependency>


At this point, the complete directory structure and the correct project are done. Then some configuration, after all, is a Web project, need jstl and so on, configured as follows:

When I can't modify it, I can choose to modify it from the configuration file, I forget the file name.

(Reprint annotated source, original address: Http://blog.csdn.net/zhshulin)

Create a Web project "Go" using maven

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.