maven编码 gbk 的不可映射字符
原因:在编译时没有指定编码
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>utf8</encoding> </configuration> </plugin>
maven 程序包javax.servlet不存在
对于Web项目,需要在pom.xml文件中加入servlet-api.jar依赖,否则Servlet类不能使用
时间: 2024-12-15 10:11:24