Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions IMOOCSpider/.project
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,15 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219326</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
11 changes: 11 additions & 0 deletions JspChat/.project
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219392</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
11 changes: 11 additions & 0 deletions Kaptcha/.project
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219419</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
11 changes: 11 additions & 0 deletions ServletAjax/.project
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,15 @@
<nature>com.genuitec.eclipse.j2eedt.core.webnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219483</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
Binary file not shown.
11 changes: 11 additions & 0 deletions checkcode/.project
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219512</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
11 changes: 11 additions & 0 deletions estore/.project
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
<filteredResources>
<filter>
<id>1755784219558</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
Binary file removed estore/build/classes/com/briup/bean/Book.class
Binary file not shown.
Binary file removed estore/build/classes/com/briup/bean/BookMapper.class
Binary file not shown.
Binary file removed estore/build/classes/com/briup/bean/Customer.class
Binary file not shown.
Binary file not shown.
Binary file removed estore/build/classes/com/briup/bean/OrderLine.class
Binary file not shown.
Binary file not shown.
Binary file removed estore/build/classes/com/briup/bean/Orderform.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed estore/build/classes/com/briup/dao/ICustomerDao.class
Binary file not shown.
Binary file removed estore/build/classes/com/briup/dao/IOrderDao.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
22 changes: 22 additions & 0 deletions estore/src/com/briup/web/servlet/Calculator.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
public class Calculator {
/* public int add(int a, int b) {
return a + b + 10; // modified in main branch
}*/
public int add(int a, int b) {
return a + b + 5; // modified in feature branch
}




public int subtract(int a, int b) {
return a - b;
}
public int multiply(int a, int b) {
return a * b;
}
public int divide(int a, int b) {
if (b == 0) throw new IllegalArgumentException("Cannot divide by zero");
return a / b;
}
}
18 changes: 18 additions & 0 deletions estore/src/com/briup/web/servlet/Student.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
public class Student {
private String name;
private int age;

// Constructor
public Student(String name, int age) {
this.name = name;
this.age = age;
}

// Getters
public String getName() { return name; }
public int getAge() { return age; }

// Setters
public void setName(String name) { this.name = name; }
public void setAge(int age) { this.age = age; }
}
Binary file modified seckill/target/classes/org/seckill/dao/SeckillDao.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/dao/SuccessKilledDao.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/dto/ExposerRsp.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/dto/SeckillExecutionRsp.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/dto/SeckillResult.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/entity/Seckill.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/entity/SuccessKilled.class
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/enums/SeckillStatEnum.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/service/SeckillService.class
Binary file not shown.
Binary file not shown.
Binary file modified seckill/target/classes/org/seckill/web/SeckillController.class
Binary file not shown.
Binary file modified seckill/target/test-classes/org/seckill/dao/SeckillDaoTest.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
26 changes: 26 additions & 0 deletions springboot-shiro/bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr


### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
/build/
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions springboot-shiro/bin/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
Loading