課程
/后端開發(fā)
/Java
/Java實(shí)現(xiàn)Base64加密
怎么在pom.xml中引入這些jar?
2017-07-05
源自:Java實(shí)現(xiàn)Base64加密 2-1
正在回答
<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/maven-v4_0_0.xsd">? <modelVersion>4.0.0</modelVersion>? <groupId>com.zdcx</groupId>? <artifactId>practice</artifactId>? <packaging>war</packaging>? <version>0.0.1-SNAPSHOT</version>? <name>practice Maven Webapp</name>? <url>http://maven.apache.org</url>? ? <dependencies>?? ??? ?<dependency>????? <groupId>junit</groupId>????? <artifactId>junit</artifactId>????? <version>4.12</version>????? <scope>test</scope>??? </dependency>?? ???? <dependency>?? ??? ?<groupId>org.springframework.amqp</groupId>?? ??? ?<artifactId>spring-rabbit</artifactId>?? ??? ?<version>1.6.6.RELEASE</version>?? ?</dependency>?? ?? </dependencies>? <build>??? <finalName>practice</finalName>??? <plugins>?? ??? ??? ?<!-- 指定編譯版本 -->?? ??? ??? ?<plugin>?? ??? ??? ??? ?<groupId>org.apache.maven.plugins</groupId>?? ??? ??? ??? ?<artifactId>maven-compiler-plugin</artifactId>?? ??? ??? ??? ?<version>3.5.1</version>?? ??? ??? ??? ?<configuration>?? ??? ??? ??? ??? ?<compilerArgument>-parameters</compilerArgument>?? ??? ??? ??? ??? ?<source>1.7</source>?? ??? ??? ??? ??? ?<target>1.7</target>?? ??? ??? ??? ?</configuration>?? ??? ??? ?</plugin>?? ??? ?</plugins>? </build>? <properties>?? ??? ?<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>?? ?</properties></project>
舉報(bào)
Java實(shí)現(xiàn)Base64加密,本課程是Java加解密必備的入門基礎(chǔ)
2 回答我把jar包導(dǎo)入后,還是有問題啊。
3 回答原來課程提供了jar包?。。?!虧我還從csdn上自己找~~ duang~~~~
1 回答下載jar包的時(shí)候發(fā)現(xiàn):應(yīng)該是CC對(duì)jdk的版本存在依賴,BC無依賴。
1 回答瀏覽器下載jar提示服務(wù)器找不到j(luò)ar是什么問題啊
6 回答BASE64Encoder導(dǎo)包問題
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-07-06
<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/maven-v4_0_0.xsd">
? <modelVersion>4.0.0</modelVersion>
? <groupId>com.zdcx</groupId>
? <artifactId>practice</artifactId>
? <packaging>war</packaging>
? <version>0.0.1-SNAPSHOT</version>
? <name>practice Maven Webapp</name>
? <url>http://maven.apache.org</url>
?
? <dependencies>
?? ?
?? ?<dependency>
????? <groupId>junit</groupId>
????? <artifactId>junit</artifactId>
????? <version>4.12</version>
????? <scope>test</scope>
??? </dependency>
?? ?
??? <dependency>
?? ??? ?<groupId>org.springframework.amqp</groupId>
?? ??? ?<artifactId>spring-rabbit</artifactId>
?? ??? ?<version>1.6.6.RELEASE</version>
?? ?</dependency>
?? ?
? </dependencies>
? <build>
??? <finalName>practice</finalName>
??? <plugins>
?? ??? ??? ?<!-- 指定編譯版本 -->
?? ??? ??? ?<plugin>
?? ??? ??? ??? ?<groupId>org.apache.maven.plugins</groupId>
?? ??? ??? ??? ?<artifactId>maven-compiler-plugin</artifactId>
?? ??? ??? ??? ?<version>3.5.1</version>
?? ??? ??? ??? ?<configuration>
?? ??? ??? ??? ??? ?<compilerArgument>-parameters</compilerArgument>
?? ??? ??? ??? ??? ?<source>1.7</source>
?? ??? ??? ??? ??? ?<target>1.7</target>
?? ??? ??? ??? ?</configuration>
?? ??? ??? ?</plugin>
?? ??? ?</plugins>
? </build>
? <properties>
?? ??? ?<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
?? ?</properties>
</project>