失效链接处理 |
RESTful Java Web Services Security PDF 下载
本站整理下载:
相关截图:
![]()
主要内容:
Class names and package names together shape the class's full name. This full name
allows the class names to be identified in a unique way. Sometimes, when there are
several classes with the same name, the package name helps to identify which library
it belongs to.
The next step is to put the project into Eclipse's workspace; to do this, we must
import our project into Eclipse by navigating through File | Import | Maven |
Existing Maven Projects.
We should see the project in the IDE, as shown in the following screenshot:
Before moving on, let's fix the problems that have occurred in the file pom.xml .
The error shown in the following code is related to a bug that comes from Eclipse
and Maven integration. In order to fix this, we have to add the <pluginManagement>
tag after the <build> tag.
www.it-ebooks.info
Chapter 1
[ 11 ]
The pom.xml file should look like the following:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://
www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.
apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.packtpub</groupId>
<artifactId>resteasy-examples</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
. . .
<build>
<pluginManagement>
<plugins>
<plugin>
. . .
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Downloading the sample code
You can download the sample code files for all Packt books you have
purchased from your account at http://www.packtpub.com. If
you purchased this book elsewhere, you can visit http://www.
packtpub.com/support and register to have the files e-mailed
directly to you. Also, we highly suggest obtaining the source code
from GitHub available at https://github.com/restful-java-
web-services-security.
|