79 private links
Use mklink program in CMD
It doesn't works in powershell
mklink /J [Link] [Target]
For example, assuming that D:
exists:
mklink /J "D:\Documents" "C:\Users\You\Documents\"
The /J
flag is simply a Juntion Point, for more details, see this answer: https://superuser.com/a/343079/727956
All flows, nothing stays.
Everything changes and nothing stands still.
Remember that 2^10 = 1 KB (kilobyte), 2^20 = 1 MB (megabyte), 2^30 = 1 GB (gigabyte), and 2^40 = 1 TB (terabyte).
The following code is 100% valid and prints:
Init
Validate: true
Execute: 1
Update
Validate: true
Execute: 2
Update
Validate: false
Exit
0
1
2
3
4
5
6
7
8
9
import static java.lang.System.out;
public class ForLoop {
public static void main(String args[]) {
for (int i = init(); isTrue(i); i++, out.println("Update")) {
out.println("Execute: " + i);
}
out.println("Exit");
int i = 0;
for( ; ; ) {
if (i < 10) {
out.println(i);
}
else {
break;
}
i++;
}
}
private static boolean isTrue(int i) {
boolean val = i < 3;
out.println("Validate: " + val);
return val;
}
private static int init() {
out.println("Init");
return 1;
}
}
You can ignore using criterias to do so:
<sonar.issue.ignore.multicriteria>serializable</sonar.issue.ignore.multicriteria>
<sonar.issue.ignore.multicriteria.serializable.ruleKey>squid:S1948</sonar.issue.ignore.multicriteria.serializable.ruleKey>
<sonar.issue.ignore.multicriteria.serializable.resourceKey>**/*.java</sonar.issue.ignore.multicriteria.serializable.resourceKey>
-
“He who every morning plans the transactions of that day and follows that plan carries a thread that will guide him through the labyrinth of the busiest life.” – Victor Hugo
-
“Lack of direction, not lack of time, is the problem. We all have twenty-four hour days.” – Zig Ziglar
-
"The most efficient way to live reasonably is every morning to make a plan of one’s day and every night to examine the results obtained.” – Alexis Carrel
-
“My favourite things in life don’t cost any money. It’s really clear that the most precious resource we all have is time.” – Steve Jobs
-
“You get to decide where your time goes. You can either spend it moving forward, or you can spend it putting out fires. You decide. And if you don’t decide, others will decide for you.” – Tony Morgan
-
“Time = life; therefore, waste your time and waste of your life, or master your time and master your life.” – Alan Lakein
-
“Tomorrow is often the busiest day of the week.” – Anonymous
-
“Procrastination is the art of keeping up with yesterday and avoiding today.” – Wayne Dyer
-
“You may delay, but time will not.” – Benjamin Franklin (edited)
Dentro de um controller:
@Autowired
private UserRepository userRepository;
@Autowired
public ApplicationContext context;
@GetMapping("/users")
public List<User> getUser(){
return userRepository.findAll();
}
@GetMapping("/gambiarra")
public List<User> test(){
return ((UserController) context.getBean("userController")).getUser();
}
<?xml version="1.0" encoding="UTF-8"?>
<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.tcs.spring</groupId>
<artifactId>learnspring</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.6.RELEASE</version>
</dependency>
</dependencies>
</project>