Programmieren & Softwareentwicklung

Wenn Du nicht nur Anwender sein willst, sondern auch aktiv programmierst oder mit dem Gedanken spielst, dann warten hier die passenden Fragen und Antworten auf Dich.

27.260 Beiträge

Sind solche emails Scam muss ich mich damit epressen lassen?

Hi,

I am a professional hacker and have successfully managed to hack your operating system.

Currently I have gained full access to your account.

In addition, I was secretly monitoring all your activities and watching you for several months.

The thing is your computer was infected with harmful spyware due to the fact that you had visited a website with porn content previously.

╭ ᑎ ╮

Let me explain to you what that entails. Thanks to Trojan viruses, I can gain complete access to your computer or any other device that you own.

It means that I can see absolutely everything in your screen and switch on the camera as well as microphone at any point of time without your permission.

In addition, I can also access and see your confidential information as well as your emails and chat messages.

You may be wondering why your antivirus cannot detect my malicious software.

Let me break it down for you: I am using harmful software that is driver-based,

which refreshes its signatures on 4-hourly basis, hence your antivirus is unable to detect it presence.

I have made a video compilation, which shows on the left side the scenes of you happily masturbating,

while on the right side it demonstrates the video you were watching at that moment..ᵔ.ᵔ

All I need is just to share this video to all email addresses and messenger contacts of people you are in communication with on your device or PC.

Furthermore, I can also make public all your emails and chat history.

I believe you would definitely want to avoid this from happening.

Here is what you need to do - transfer the Bitcoin equivalent of $800 to my Bitcoin account

(that is rather a simple process, which you can check out online in case if you don't know how to do that).

Below is my bitcoin account information (Bitcoin wallet):

bc1q7jtlsp6rpfrky6r4yygpmay6gcgylurxhy64er

Once the required amount is transferred to my account, I will proceed with deleting all those videos and disappear from your life once and for all.

Kindly ensure you complete the abovementioned transfer within 50 hours (2 days +).

I will receive a notification right after you open this email, hence the countdown will start.

Trust me, I am very careful, calculative and never make mistakes.

If I discover that you shared this message with others, I will straight away proceed with making your private videos public.

Have a nice day!

Java ecplise Reload in Console bei Änderungen geht nicht?

Ich habe hier in der Klasse LoginController den

@ResponseBody auskommentiert und drück strg + s

Jetzt wird mir rechts die Exception geworfen. Zeitpunkt 10:38:06

Nun nehme ich den @ResponseBody wieder rein und drück strg + s

tomcat7...

Die Konsole rechts reagiert nun nicht automatisch. D. h. es erfolgt kein Reloading Context etc.
Warum? Kann man dies einstellen? Normal müsste die Exception jetzt doch wieder verschwinden?
Warum funktioniert dies nicht?

Nutze Java EE 2023-06

Meine pom.xml sieht folgendermaßen aus:
Kann es sein, das Java EE 2023-06 mit diesen älteren Versionen der dependencies nicht arbeiten kann?

java-web.api 6.0

maven-compiler-plugin 3.2

source und target 1.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.in28minutes</groupId>
	    <artifactId>in28Minutes-first-webapp</artifactId>
	    <version>0.0.1-SNAPSHOT</version>
	    <packaging>war</packaging>
	
	    <dependencies>
	        <dependency>
	            <groupId>javax</groupId>
	            <artifactId>javaee-web-api</artifactId>
	            <version>6.0</version>
	            <scope>provided</scope>
	        </dependency>
	        <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
			<dependency>
				<groupId>org.springframework</groupId>
				<artifactId>spring-webmvc</artifactId>
				<version>4.2.2.RELEASE</version>
			</dependency>
	    </dependencies>
	
	    <build>
	        <pluginManagement>
	            <plugins>
	                <plugin>
	                    <groupId>org.apache.maven.plugins</groupId>
	                    <artifactId>maven-compiler-plugin</artifactId>
	                    <version>3.2</version>
	                    <configuration>
	                        <verbose>true</verbose>
	                        <source>1.8</source>
	                        <target>1.8</target>
	                        <showWarnings>true</showWarnings>
	                    </configuration>
	                </plugin>
	                <plugin>
	                    <groupId>org.apache.tomcat.maven</groupId>
	                    <artifactId>tomcat7-maven-plugin</artifactId>
	                    <version>2.2</version>
	                    <configuration>
	                        <path>/</path>
	                        <contextReloadable>true</contextReloadable>
	                    </configuration>
	                </plugin>
	            </plugins>
	        </pluginManagement>
	    </build>
	</project>
Bild zum Beitrag
Ask Me Anything: Themenspecials
Im gutefrage Themenspecial beantworten Verbände, Organisationen und Personen des öffentlichen Lebens Deine Fragen zu aktuellen Themen.
AMA: Polizei
42 beantwortete Fragen
AMA: Weltraum & Raumfahrt
172 beantwortete Fragen