我有一个问题,我无法使用IntellJ IDE在调试模式下设置我的应用程序,但运行模式没问题.
我的操作系统是Windows 7,IDE是IntellJ IDEA,Web容器是Tomcat 6.我已经尝试了很长时间,更改了HTTP端口和JMX端口,但它没有用.
当我使用IntellJ在调试模式下设置应用程序时,它失败了,事件日志是:
16:05:35运行tomcat时出错:无法打开调试器端口:java.net.BindException"地址已在使用中:JVM_Bind".
任何帮助将不胜感激.
我的masm源文件如下:
qq.asm
assume cs:codesegment
codesegment segment
mov ax, 0ffffh
mov ds, ax
mov al, 00ffh
mov bx, 0006h
mov [bx], al
mov al, [0006]
mov ah, 0
mov dx, 0
mov cx, 3
s: add dx, ax
loop s
mov ax, 4c00h
int 21h
codesegment ends
end
Run Code Online (Sandbox Code Playgroud)
我使用masm程序生成一个名为qq.exe的.exe文件.当我使用debug qq.exe -u时,教师如下图所示:

我混淆了我的qq.asm中的"mov al,[0006]"指导员在qq.exe中转向"mov AL,06".任何帮助将是欣赏.
我正在阅读 Spring Boot 源代码,当我读到这里时,我很困惑。
/*
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS …Run Code Online (Sandbox Code Playgroud) 64-bit ×1
assembly ×1
debug-mode ×1
dosbox ×1
formatting ×1
java ×1
masm ×1
spring-boot ×1
windows-7 ×1