Ich versuche eine Wicket App zu entwickeln. Die Anmeldeseite muss mit SSL geöffnet sein. Also habe ich etwas programmiert. Aber ich kann nicht finden, das Maven Tomcat 7 Plugin für SSL zu konfigurieren. Ich erstellte Keystore-Datei ordnungsgemäß. Mit keytool -genkey -alias tomcat -keyalg RSA
Befehl Es ist im Benutzerverzeichnis auf Windows.Es ist Passwort Passwort. DieseSSL Konfiguration auf Maven Tomcat Plugin
ist, wie ich definiert Kater in pom.xml:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-beta-1</version>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>exec-war-only</goal>
</goals>
<phase>package</phase>
<configuration>
<path>foo</path>
<!-- optional only if you want to use a preconfigured server.xml file -->
<serverXml>src/main/tomcatconf/server.xml</serverXml>
<!-- optional values which can be configurable -->
<attachArtifactClassifier>
default value is exec-war but you can customize
</attachArtifactClassifier>
<attachArtifactClassifierType>
default value is jar
</attachArtifactClassifierType>
<httpsPort>8443</httpsPort>
<keystoreFile>${user.home}/.keystore</keystoreFile>
<keystorePass>password</keystorePass>
<protocol>org.apache.coyote.http11.Http11AprProtocol</protocol>
</configuration>
</execution>
</executions>
</plugin>
Haben Sie die richtige Konfiguration gefunden? Ich versuche etwas Ähnliches ohne Erfolg zu machen. – Jayz
nein! .......... – yyy